chore: default to port 8000
All checks were successful
Rust / check (push) Successful in 35s
Rust / test (push) Successful in 29s
Docker / build (push) Successful in 1m19s

This commit is contained in:
2026-06-16 14:39:53 +02:00
parent bfc7bd4f7c
commit 8268bd9692
6 changed files with 18 additions and 18 deletions

View File

@@ -74,11 +74,11 @@ COPY --from=builder /usr/local/bin/pokedex-api /usr/local/bin/pokedex-api
ARG GIT_SHA=unknown
ENV GIT_SHA=$GIT_SHA \
BIND_ADDR=0.0.0.0:5000
BIND_ADDR=0.0.0.0:8000
EXPOSE 5000
EXPOSE 8000
USER app
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD curl -fsS http://127.0.0.1:5000/health || exit 1
CMD curl -fsS http://127.0.0.1:8000/health || exit 1
CMD ["pokedex-api"]