This commit is contained in:
parent
4dc1de7ac2
commit
93c41e14c0
2 changed files with 21 additions and 0 deletions
21
Docker/Dockerfile.debian
Normal file
21
Docker/Dockerfile.debian
Normal file
|
@ -0,0 +1,21 @@
|
|||
# syntax=docker/dockerfile:1
|
||||
|
||||
FROM node:19.7.0-buster-slim
|
||||
|
||||
ENV DOCKERIZED=1
|
||||
RUN mkdir /config
|
||||
RUN chown node:node /config
|
||||
|
||||
RUN apt add dumb-init
|
||||
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"]
|
Loading…
Reference in a new issue