diff --git a/Dockerfile b/Dockerfile index 557bbcd..0df7c2b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]