Botanique/Docker/Dockerfile.debian

22 lines
373 B
Text
Raw Normal View History

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