6 lines
224 B
Docker
6 lines
224 B
Docker
FROM webdevops/php-nginx:8.3-alpine
|
|
ENV WEB_DOCUMENT_ROOT=/app
|
|
COPY . /app
|
|
RUN echo "index index.php index.html index.htm;" > /opt/docker/etc/nginx/vhost.common.d/01-index.conf \
|
|
&& chown -R application:application /app
|