add dockerfile

This commit is contained in:
tezlm 2024-07-28 07:41:27 -07:00
parent f224aaf1dc
commit 373ee40ff0
Signed by: tezlm
GPG key ID: 649733FCD94AFBBA
2 changed files with 9 additions and 0 deletions

2
.dockerignore Normal file
View file

@ -0,0 +1,2 @@
.git/
node_modules/

7
Dockerfile Normal file
View 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