add dockerfile
This commit is contained in:
parent
f224aaf1dc
commit
373ee40ff0
2 changed files with 9 additions and 0 deletions
2
.dockerignore
Normal file
2
.dockerignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
.git/
|
||||
node_modules/
|
7
Dockerfile
Normal file
7
Dockerfile
Normal file
|
@ -0,0 +1,7 @@
|
|||
FROM node:22-alpine
|
||||
WORKDIR /app
|
||||
COPY . /app
|
||||
RUN npm i -g pnpm
|
||||
RUN pnpm install
|
||||
CMD node index.mjs
|
||||
EXPOSE 8734
|
Loading…
Reference in a new issue