Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions db/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
FROM liquibase/liquibase
FROM liquibase/liquibase:5.0

RUN lpm add postgresql --global
COPY ./scripts ./scripts
COPY ./*changelog.json .
COPY ./liquibase.properties .
COPY --chmod=0755 ./executeLiquibase.sh .

# Old command replaced by command below to run two changelog files
#ENTRYPOINT [ "sh", "-c", "liquibase $COMMAND $TARGET_LIQUIBASE_TAG --changelog-file=$CHANGELOG_FILE -Dschemaname=wfprev"]
ENTRYPOINT ["sh", "-c", "./executeLiquibase.sh"]
ENTRYPOINT ["sh", "-c", "./executeLiquibase.sh"]
Loading