Files
dashcaddy/dashcaddy-api/Dockerfile
T
Sami 95a8ae7a09
CI / Test & Lint (push) Has been cancelled
CI / Security audit (push) Has been cancelled
fix(docker): remove stale COPY dns-providers/ — moved to src/dns/dns-providers/
2026-06-28 04:11:32 -07:00

32 lines
925 B
Docker

FROM node:20-alpine
WORKDIR /app
# Install OpenSSL for certificate generation
RUN apk add --no-cache openssl
COPY package*.json ./
RUN npm install --production
COPY *.js ./
COPY src/ ./src/
COPY routes/ ./routes/
COPY openapi.yaml ./
# VERSION file holds the short git SHA the image was built from. Committed as
# 'dev' for source builds; the release script (scripts/release.sh) overwrites it
# with the actual commit hash before tarballing each release.
COPY VERSION ./
# Note: Running as root because container needs Docker socket access
# (which is root-equivalent anyway). Socket access required for container management.
EXPOSE 3001
STOPSIGNAL SIGTERM
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD node -e "require('http').get('http://localhost:3001/health', (r) => { process.exit(r.statusCode === 200 ? 0 : 1); }).on('error', () => process.exit(1))"
CMD ["node", "server.js"]