update to discord-player-v6 #76

Merged
Anri merged 30 commits from feat/music-v6 into main 2023-03-11 20:36:25 +01:00
2 changed files with 21 additions and 0 deletions
Showing only changes of commit 93c41e14c0 - Show all commits

21
Docker/Dockerfile.debian Normal file
View file

@ -0,0 +1,21 @@
# syntax=docker/dockerfile:1
FROM node:19.7.0-buster-slim
ENV DOCKERIZED=1
RUN mkdir /config
RUN chown node:node /config
RUN apt add dumb-init
ENV NODE_ENV=production
WORKDIR /app
COPY --chown=node:node . .
RUN npm ci --only=production
RUN npx tsc
RUN rm -r src/ tsconfig.json
RUN npm uninstall typescript @types/sqlite3
CMD ["dumb-init", "node", "./dist/index.js"]