Spaces:
Running
Running
| FROM nginx:alpine | |
| RUN rm /etc/nginx/conf.d/default.conf | |
| COPY nginx.conf /etc/nginx/conf.d/app.conf | |
| COPY . /usr/share/nginx/html/ | |
| RUN rm -f /usr/share/nginx/html/Dockerfile /usr/share/nginx/html/nginx.conf /usr/share/nginx/html/README.md | |
| EXPOSE 7860 | |
| CMD ["nginx", "-g", "daemon off;"] | |