feat(docker): adding first Dockerfile

This commit is contained in:
Philippe Caseiro 2023-06-13 15:44:55 +02:00
parent d3d9061699
commit 9cd7a8db27
3 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,23 @@
Symfony Skeletor
```
your-project/
├── assets/
├── bin/
│ └── console
├── config/
│ ├── bundles.php
│ ├── packages/
│ ├── routes.yaml
│ └── services.yaml
├── public/
│ └── index.php
├── src/
│ ├── ...
│ └── Kernel.php
├── templates/
├── tests/
├── translations/
├── var/
└── vendor/
```

View File

View File

@ -0,0 +1,3 @@
ARG ADDITIONAL_PACKAGES="<packages_list>"
FROM reg.cadoles.com/cadoles/symfony:alpine-php-8.1-standalone