Files
Lino Silva fe4c54ebcb
Build and publish / build (push) Failing after 2m37s
feat: Initial move to docker image
2026-04-10 17:24:44 +01:00

17 lines
387 B
YAML

version: '3.8'
services:
bpi-scraper:
build: .
ports:
- "3000:3000"
environment:
- PORT=3000
restart: unless-stopped
healthcheck:
test: ["CMD", "node", "-e", "require('http').get('http://localhost:3000/health', (r) => {process.exit(r.statusCode === 200 ? 0 : 1)})"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s