Anri Kennel
b585b15959
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
- Resolve #65 - Update domain name - Add autocompletion support - Use debian instead of alpine based image Co-authored-by: Mylloon <kennel.anri@tutanota.com> Reviewed-on: #76
22 lines
405 B
Text
22 lines
405 B
Text
# syntax=docker/dockerfile:1
|
|
|
|
FROM node:19.7.0-bullseye-slim
|
|
|
|
ENV DOCKERIZED=1
|
|
RUN mkdir /config
|
|
RUN chown node:node /config
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y 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"]
|