Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DAT-18816: add support for different PRO extensions in Dockerfile #89

Merged
merged 3 commits into from
Oct 10, 2024
Merged
Changes from 2 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
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ FROM liquibase/liquibase:4.29.2
# Marker which indicates this is a Liquibase docker container
ENV DOCKER_AWS_LIQUIBASE=true

# Add the AWS License Service Extension using the Liquibase Package Manager (LPM)
RUN lpm update && lpm add liquibase-aws-license-service --global
# Add support for Liquibase PRO extensions using the Liquibase Package Manager (LPM)
RUN lpm update && \
lpm add liquibase-aws-license-service liquibase-s3-extension liquibase-aws-secrets-manager \
liquibase-commercial-mongodb liquibase-commercial-dynamodb liquibase-checks --global
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
lpm add liquibase-aws-license-service liquibase-s3-extension liquibase-aws-secrets-manager \
liquibase-commercial-mongodb liquibase-commercial-dynamodb liquibase-checks --global
lpm add \
liquibase-aws-license-service \
liquibase-s3-extension \
liquibase-aws-secrets-manager \
liquibase-commercial-mongodb \
liquibase-commercial-dynamodb \
liquibase-checks \
--global



# Default command to display Liquibase version
CMD ["liquibase", "--help"]
Loading