Initial commit

This commit is contained in:
2022-07-18 12:07:41 -04:00
commit 2f963dfced
20 changed files with 2226 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:12 as build
WORKDIR /app
COPY keysmash/ ./
RUN npm install
RUN npm run build
FROM nginx:1.20.1-alpine
COPY nginx.conf /etc/nginx/nginx.conf
COPY --from=build /app/dist/ /www/
COPY --from=build /app/static/ /www/