Botanique/Dockerfile
Mylloon 4296e0c4c0
All checks were successful
PR Check / lint-and-format (pull_request) Successful in 1m41s
use alpine instead of debian
2024-12-07 20:55:17 +01:00

20 lines
434 B
Docker

# syntax=docker/dockerfile:1
FROM node:22.3-alpine3.19
ENV DOCKERIZED=1
RUN mkdir /config && \
chown node:node /config && \
apk add dumb-init ffmpeg
WORKDIR /app
COPY --chown=node:node . .
ENV NODE_ENV=production
RUN npm ci --omit=dev && \
npm run compile && \
rm -r src/ tsconfig.json && \
npm uninstall typescript @types/sqlite3 && \
npm cache clean --force
CMD ["dumb-init", "node", "./dist/index.js"]