Files
Gallus_Pub/Dockerfile
Kenzo f816950a7e
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Update Dockerfile for improved production readiness
- Ensure CSS variables are included in the build process.
- Replace `node` with `serve` for serving the production build.
- Adjust container health check timings for quicker feedback.
2025-11-08 18:16:19 +01:00

22 lines
492 B
Docker

FROM node:20-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
# Ensure CSS variables are present
RUN mkdir -p public/styles
RUN cp -r styles/* public/styles/ || true
RUN npm run build
FROM node:20-alpine AS production
WORKDIR /app
RUN npm install -g serve
COPY --from=build /app/dist ./dist
EXPOSE 3000
CMD ["serve", "-s", "dist", "-l", "3000"]
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD wget -qO- http://localhost:3000/ || exit 1