Botanique/Dockerfile
Mylloon 7c25633122
All checks were successful
Lint and Format Check / lint-and-format (pull_request) Successful in 13s
clean up old env variable and bump node
2024-09-05 13:58:41 +02:00

22 lines
501 B
Docker

# syntax=docker/dockerfile:1
FROM node:22.8-bullseye-slim
ENV DOCKERIZED=1
RUN mkdir /config && \
chown node:node /config && \
apt-get update && \
apt-get install -y dumb-init ffmpeg && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY --chown=node:node . .
ENV NODE_ENV=production
RUN npm ci --omit=dev && \
npx tsc && \
rm -r src/ tsconfig.json && \
npm uninstall typescript @types/sqlite3 && \
npm cache clean --force
CMD ["dumb-init", "node", "./dist/index.js"]