Added a Dockerfile
ci/woodpecker/push/ociImagePush Pipeline was successful Details

This commit is contained in:
Natty 2024-04-13 20:55:09 +02:00
parent 2c2ab5a40a
commit 612ae8a689
Signed by: natty
GPG Key ID: BF6CB659ADEE60EC
1 changed files with 10 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM docker.io/node:21-bullseye
RUN corepack enable
ADD . .
RUN pnpm i --frozen-lockfile
RUN pnpm run build
CMD [ "node", ".output/server/index.mjs" ]