Botanique/Dockerfile
Anri Kennel d9cb8f02e2
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
feat: Use OS's ffmpeg instead of npm package (#90)
Closes #77
Follow up of #65

Recommended by https://github.com/Androz2091/discord-player/issues/1639

This also returns to Alpine-based Docker image and remove the Debian one

Co-authored-by: Mylloon <kennel.anri@tutanota.com>
Reviewed-on: #90
2023-03-24 14:32:49 +01:00

21 lines
379 B
Docker

# syntax=docker/dockerfile:1
FROM node:19.8.1-alpine3.17
ENV DOCKERIZED=1
RUN mkdir /config
RUN chown node:node /config
RUN apk add dumb-init ffmpeg
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"]