Basic application

This commit is contained in:
C9E4F7
2020-11-30 17:24:45 +02:00
parent 8be04950de
commit d310a97a7b
5 changed files with 119 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
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"]