Server side done

This commit is contained in:
nannal
2020-12-30 15:44:25 +02:00
parent ae911cf059
commit 1decbb8e91
9 changed files with 591 additions and 1 deletions

9
client/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"]