helpyourneighbour/Dockerfile.test

13 lines
248 B
Text
Raw Normal View History

2026-03-04 21:13:12 +00:00
FROM node:22-bookworm
WORKDIR /app/backend
COPY backend/package*.json ./
RUN npm ci
COPY backend/ ./
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 CMD curl -f http://localhost:3000/health || exit 1
2026-03-04 21:13:12 +00:00
CMD ["npm", "test"]