You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

10 lines
230 B

FROM nginx:alpine
# Copy composer.lock and composer.json
COPY nginx/conf.d/vhost.conf /etc/nginx/conf.d/default.conf
COPY . /var/www
# Set working directory
WORKDIR /var/www
# Expose port 9000 and start php-fpm server
EXPOSE 80