Add Dockerfile

This commit is contained in:
Jan Beerbom 2024-04-11 13:03:49 +02:00
parent 75075c6fab
commit 2340a82bad

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" ]