All checks were successful
Build and Push Docker Image / build (push) Successful in 2m17s
Custom Docker images embed all config so production servers no longer need SQL files, kong.yml, or shell scripts. Kong generates config from env vars at startup. Migrate container auto-detects fresh vs existing DB and runs appropriate scripts. New images: monacousa-db, monacousa-kong, monacousa-migrate New commands: deploy.sh build-images, deploy.sh push-images Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
233 B
Docker
10 lines
233 B
Docker
FROM supabase/postgres:15.8.1.060
|
|
|
|
# Embed SQL scripts and entrypoint
|
|
COPY init.sql /sql/init.sql
|
|
COPY post-deploy.sql /sql/post-deploy.sql
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|