mightypanders
251756c622
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>
12 lines
233 B
Docker
12 lines
233 B
Docker
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"]
|