votetrainsite/Dockerfile

10 lines
162 B
Docker
Raw Normal View History

2020-11-30 15:24:45 +00:00
FROM nginx:latest
ADD ./ /frontend
RUN mv ./frontend/Private/nginx.conf /etc/nginx/nginx.conf
RUN mv ./frontend/Public/* /usr/share/nginx/html/
CMD ["nginx"]