feat: Music support #62

Merged
Anri merged 43 commits from feat/music into main 2023-02-12 01:11:10 +01:00
Showing only changes of commit 13a348e69e - Show all commits

View file

@ -12,10 +12,10 @@ WORKDIR /app
COPY --chown=node:node . .
RUN npm ci --only=production
RUN npm ci --only=production --legacy-peer-deps
RUN npx tsc
RUN rm -r src/ tsconfig.json
RUN npm uninstall typescript @types/sqlite3
RUN npm uninstall typescript @types/sqlite3 --legacy-peer-deps
CMD ["dumb-init", "node", "./dist/index.js"]