Add Dockerfile
This commit is contained in:
parent
79e2b959e2
commit
9f961ba286
1 changed files with 7 additions and 0 deletions
7
Dockerfile
Normal file
7
Dockerfile
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
FROM node:20-alpine
|
||||||
|
WORKDIR /app
|
||||||
|
COPY package*.json ./
|
||||||
|
RUN npm install --production
|
||||||
|
COPY . .
|
||||||
|
EXPOSE 3100
|
||||||
|
CMD ["node", "server.js"]
|
||||||
Loading…
Reference in a new issue