Add Dockerfile

master
Kar 2025-03-31 13:37:08 +00:00
parent 77911fe7a0
commit 985115de63
1 changed files with 13 additions and 0 deletions

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