Files
hereconnect/services/tg-bot/Dockerfile
T
ti b7d1618773
Deploy service tg-bot / service tg-bot (push) Failing after 3m10s
fix ci tg bot
2024-12-12 17:53:18 +02:00

9 lines
209 B
Docker

FROM node:20-alpine
COPY . ./
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=1 \
CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:8000/health || exit 1
CMD ["npm", "start"]