Add Dockerfile

pull/86/head
Jan Beerbom 2024-04-11 13:03:49 +02:00
parent 75075c6fab
commit 2340a82bad
1 changed files with 6 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM node:21
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 8000
CMD [ "npm", "run", "start:dev" ]