Skip to content

Commit

Permalink
DAT-18816: add support for different PRO extensions in Dockerfile (#89)
Browse files Browse the repository at this point in the history
* add support for different PRO extensions in Dockerfile

* add support for different PRO extensions in Dockerfile

* add support for different PRO extensions in Dockerfile

---------

Co-authored-by: Sayali M <sayali@Sayalis-MacBook-Pro>
  • Loading branch information
sayaliM0412 and Sayali M authored Oct 10, 2024
1 parent 0fdbf43 commit 864cbeb
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,17 @@ 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


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

0 comments on commit 864cbeb

Please sign in to comment.