Files
kittyBE/Dockerfile
sherl e0d8849bd1
All checks were successful
Build and push Docker image / build (push) Successful in 2m53s
Release new version / release (push) Successful in 29s
Update changelog / changelog (push) Successful in 24s
fix: Docker fixes
2026-01-20 22:29:28 +01:00

19 lines
463 B
Docker

# Credit: https://www.digitalocean.com/community/tutorials/how-to-build-a-node-js-application-with-docker
FROM node:24-trixie-slim AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci && npm cache clean --force
COPY . .
FROM node:24-trixie-slim AS production
WORKDIR /app
RUN addgroup --gid 1001 nodejs && \
adduser --gid 1001 --uid 1001 nodejs
COPY --from=builder --chown=nodejs:nodejs /app /app
USER nodejs
EXPOSE 6567
CMD ["npm", "run", "server"]