Final touches

This commit is contained in:
2024-06-11 19:07:43 +01:00
parent 0f32c5441d
commit ae34843303
13 changed files with 252 additions and 24 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM node:18-alpine
# Path: /app
WORKDIR /lk-results/
COPY . .
RUN npm install
RUN npm run build
RUN npm install -g serve
CMD ["serve", "-s", "build"]