Compare commits

..

1 Commits
0.1.0 ... 0.1.1

Author SHA1 Message Date
Morten Olsen
83050d1eb1 add deployments 2025-07-28 22:57:43 +02:00
2 changed files with 11 additions and 0 deletions

5
.dockerignore Normal file
View File

@@ -0,0 +1,5 @@
/node_modules/
/.github/
/.vscode/
/chart/
/.env

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:23-alpine
RUN corepack enable
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile --prod
COPY . .
CMD ["node", "src/index.ts"]