Initial commit
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
2022-02-08 23:03:34 +02:00
commit 200d4e9d2c
4 changed files with 46 additions and 0 deletions

5
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM node AS builder
FROM nginx
COPY ./default.conf /etc/nginx/conf.d/default.conf
ENTRYPOINT ["nginx", "-g", "daemon off;"]