Add dockerfile, small fixes
This commit is contained in:
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM node:22-alpine
|
||||
WORKDIR /home/app
|
||||
|
||||
COPY package.json .
|
||||
RUN npm install --force
|
||||
|
||||
COPY ./dist ./dist
|
||||
EXPOSE 8000
|
||||
CMD ["node", "./dist/index.js"]
|
||||
Reference in New Issue
Block a user