Add Dockerfile

This commit is contained in:
Kar
2025-03-31 13:37:08 +00:00
parent 77911fe7a0
commit 985115de63

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:18-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . .
EXPOSE 2008
ENTRYPOINT ["npm", "run"]
CMD ["dev"]