Spaces:
Sleeping
Sleeping
# production stage | |
FROM nginx:latest as production-stage | |
COPY index.html /etc/nginx/html/index.html | |
COPY conf/nginx.conf /etc/nginx/nginx.conf | |
RUN chmod -R 777 /var/cache/nginx | |
EXPOSE 8888 | |
CMD ["nginx", "-g", "daemon off;"] |