All checks were successful
Build and Push Docker Images / build-portal (push) Successful in 2m32s
Build and Push Docker Images / build-infra (docker/db, monacousa-db) (push) Successful in 1m30s
Build and Push Docker Images / build-infra (docker/kong, monacousa-kong) (push) Successful in 34s
Build and Push Docker Images / build-infra (docker/migrate, monacousa-migrate) (push) Successful in 1m13s
- Gitea Actions now builds monacousa-db, monacousa-kong, and monacousa-migrate alongside the portal image on every push to main - Fix Kong Dockerfile permission issue (use COPY --chmod instead of RUN chmod) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
243 B
Docker
10 lines
243 B
Docker
FROM kong:2.8.1
|
|
|
|
USER root
|
|
COPY kong.yml.template /var/lib/kong/kong.yml.template
|
|
COPY --chmod=755 docker-entrypoint-wrapper.sh /docker-entrypoint-wrapper.sh
|
|
USER kong
|
|
|
|
ENTRYPOINT ["/docker-entrypoint-wrapper.sh"]
|
|
CMD ["kong", "docker-start"]
|