FROM 475275892927.dkr.ecr.us-east-1.amazonaws.com/liquibase:3.10.3

ARG REVISION
ARG BUILDTIME
LABEL REVISION=${REVISION}
LABEL BUILDTIME=${BUILDTIME}

COPY ./migrations /liquibase/migrations
COPY ./stored_procedures /liquibase/stored_procedures
COPY ./seed /liquibase/seed
COPY ./views /liquibase/views
COPY ./functions /liquibase/functions
COPY init /init
COPY ./db.changelog-master.xml /liquibase/db.changelog-master.xml
COPY ./entrypoint.sh /entrypoint_wrapper.sh
RUN chmod +x /entrypoint_wrapper.sh
ENV LIQUIBASE_SYSTEM_SCHEMA="data_health" \
    LIQUIBASE_DEFAULT_SCHEMA="data_health"

ENTRYPOINT [ "/entrypoint_wrapper.sh" ]
