This commit is contained in:
nin0dev 2024-12-29 17:59:05 -05:00
parent 317a1e343e
commit a288703c62
Signed by: nin0
SSH key fingerprint: SHA256:Is2DvJdw1OkSopR4wKJfdWV0fZhMLxpnCs1P1nPhIgA

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM node:14-slim
WORKDIR /app
COPY package*.json ./
RUN npm install -g pnpm
RUN pnpm install
COPY . .
RUN pnpm build
CMD ["node", "dist/index.js"]