helpyourneighbour/Dockerfile.test

16 lines
421 B
Text
Raw Permalink Normal View History

2026-03-04 21:13:12 +00:00
FROM node:22-bookworm
# Erstelle den korrekten Pfad für das Repository
WORKDIR /home/openclaw/.openclaw/workspace/helpyourneighbour/backend
2026-03-04 21:13:12 +00:00
# Kopiere package.json und installiere Abhängigkeiten
COPY package*.json ./
2026-03-04 21:13:12 +00:00
RUN npm ci
# Kopiere den gesamten Backend-Code
COPY . .
2026-03-04 21:13:12 +00:00
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"]