Files @ 62df4ec3de57
Branch filter:

Location: symposion_app/docker/Dockerfile.dev

James Polley
Allow flags for migrations

Switch Dockerfile from CMD to ENTRYPOINT so that flags can be passed
to the makemigrations command

This is required in cases where we need to use django's makemigrations
--merge to merge two migrations.
1
2
3
4
ARG CI_COMMIT_SHA
FROM asia.gcr.io/linuxconfsydney/symposion_app:$CI_COMMIT_SHA

CMD ["/app/symposion_app/docker/deploy_with_sqlite.sh"]