feat/cicd #22

Merged
kenobi merged 32 commits from feat/cicd into master 2023-06-14 22:43:37 +02:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit 1593e126eb - Show all commits

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 .