Compare commits

...

2 Commits

Author SHA1 Message Date
8ee36f7510 add woodpecker integration 2023-06-13 20:31:33 +02:00
1593e126eb add docker build files 2023-06-13 20:31:19 +02:00
3 changed files with 19 additions and 0 deletions

7
.woodpecker.yml Normal file
View File

@ -0,0 +1,7 @@
pipeline:
docker:
image: plugins/docker
settings:
registry: registry.brudi.xyz
repo: registry.brudi.xyz/kenobi/node-jellyfin-role-bot
tags: latest

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM node:alpine as Build
ENV NODE_ENV=production
WORKDIR /app
COPY [ "package-lock.json", "package.json", "index.ts", "tsconfig.json", "./" ]
COPY server ./server
RUN npm ci --omit=dev
RUN npm run build
CMD ["npm","run","start"]

1
dockerbuild.sh Executable file
View File

@ -0,0 +1 @@
docker build --tag node-jellyfin-role-bot:latest .