Files
hereconnect/services/message-delivery-method-web-push/Dockerfile
T

9 lines
226 B
Docker
Raw Normal View History

2024-12-03 11:11:44 +02:00
FROM oven/bun:1.1.38-alpine
COPY . ./
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=1 \
2024-12-03 18:55:50 +02:00
CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:8000/health || exit 1
2024-12-03 11:11:44 +02:00
CMD ["bun", "dist/server.js"]