feat/cicd (#22)
All checks were successful
Build a docker image for node-jellyfin-role-bot / build-docker-image (push) Successful in 14s
All checks were successful
Build a docker image for node-jellyfin-role-bot / build-docker-image (push) Successful in 14s
Co-authored-by: magnetotail <magnetotail@posteo.net> Reviewed-on: #22 Co-authored-by: mightypanders <mighty.panders@posteo.de> Co-committed-by: mightypanders <mighty.panders@posteo.de>
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal 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"]
|
Reference in New Issue
Block a user