Files
hereconnect/services/tg-bot/Dockerfile
T

9 lines
226 B
Docker
Raw Normal View History

2024-12-10 13:21:38 +02:00
FROM oven/bun:1.1.38-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 ["bun", "dist/server.js"]