15 lines
421 B
Text
15 lines
421 B
Text
FROM node:22-bookworm
|
|
|
|
# Erstelle den korrekten Pfad für das Repository
|
|
WORKDIR /home/openclaw/.openclaw/workspace/helpyourneighbour/backend
|
|
|
|
# Kopiere package.json und installiere Abhängigkeiten
|
|
COPY package*.json ./
|
|
RUN npm ci
|
|
|
|
# Kopiere den gesamten Backend-Code
|
|
COPY . .
|
|
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 CMD curl -f http://localhost:3000/health || exit 1
|
|
|
|
CMD ["npm", "test"]
|