2024-02-06 00:31:34 +00:00
|
|
|
#
|
2024-02-06 00:00:58 +00:00
|
|
|
# Dockerfile template for Symfony based projects using PHP 8.3
|
|
|
|
#
|
|
|
|
# Magic files (in /application):
|
|
|
|
#
|
2024-02-07 12:37:27 +00:00
|
|
|
# .nginx-site.conf Override nginx site default.conf
|
2024-02-06 00:31:34 +00:00
|
|
|
# .symfony-preinit Called before composer install
|
|
|
|
# .symfony-init Called after compose install
|
2024-02-06 00:00:58 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
FROM dev.noccylabs.info/noccylabs/alpine-php83-aio:latest
|
|
|
|
|
|
|
|
COPY . /application
|
2024-02-07 12:37:27 +00:00
|
|
|
|
|
|
|
VOLUME /application/var
|