monacousa-portal/Dockerfile

29 lines
682 B
Docker

ARG NODE_VERSION=20.10.0
ARG PORT=6060
FROM node:${NODE_VERSION}-slim as base
ENV NODE_ENV=production
ENV NODE_OPTIONS=--max-old-space-size=8192
WORKDIR /app
FROM base as build
COPY package.json .
COPY package-lock.json .
RUN npm ci --production=false
COPY . .
RUN npm run build
RUN npm prune
FROM base as production
ENV PORT=$PORT
COPY --from=build /app/.output /app/.output
# Add health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \
CMD curl -f http://localhost:6060/api/health || exit 1
# Install curl for health check
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
CMD ["node", ".output/server/index.mjs"]