Files
hereconnect/services/tg-bot/Dockerfile
T

9 lines
209 B
Docker
Raw Normal View History

2024-12-12 17:45:01 +02:00
FROM node:22-alpine
2024-12-10 13:21:38 +02:00
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
2024-12-12 17:45:01 +02:00
CMD ["npm", "start"]