add docker build files
This commit is contained in:
parent
acc38fdcb0
commit
1593e126eb
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"]
|
1
dockerbuild.sh
Executable file
1
dockerbuild.sh
Executable file
@ -0,0 +1 @@
|
|||||||
|
docker build --tag node-jellyfin-role-bot:latest .
|
Loading…
Reference in New Issue
Block a user