Initial commit

This commit is contained in:
Ward Truyen
2024-08-03 13:05:18 +02:00
commit 3163a65b1a
32 changed files with 4650 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:lts-alpine3.20
WORKDIR /app
COPY src/ .
RUN npm install --global serve
EXPOSE 3000
CMD [ "serve", "." ]