21 lines
440 B
Docker
21 lines
440 B
Docker
FROM trafex/php-nginx:3.9.0
|
|
|
|
USER root
|
|
|
|
RUN apk add --no-cache \
|
|
php84-opcache \
|
|
php84-pdo_mysql \
|
|
php84-simplexml
|
|
|
|
USER nobody
|
|
|
|
COPY --chmod=0775 ./bash/entrypoint.sh /usr/local/bin/
|
|
COPY --chmod=0755 ./bash/nginx.conf /etc/nginx/conf.d/site.conf
|
|
|
|
HEALTHCHECK --interval=5s --timeout=5s --retries=5 CMD [ "php", "/var/www/bin/console", "startup:status" ]
|
|
|
|
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
|
|
|
|
WORKDIR /var/www
|
|
|