Skip to content

Commit

Permalink
DAT-10128 add aws cli example
Browse files Browse the repository at this point in the history
  • Loading branch information
jnewton03 committed Sep 1, 2022
1 parent 01138b6 commit 2ec7d62
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,4 +168,4 @@ Note: If the database IP refers to a locally running docker container then one n

#### Adding Native Executors

The recommended path for adding native executors such as Oracle SQL*Plus, Microsoft SQLCMD, or Postgres PSQL is to extend the liquibase/liquibase Dockerfile. Examples are provided in the [Examples](/examples) Directory.
The recommended path for adding native executors/binaries such as Oracle SQL*Plus, Microsoft SQLCMD, Postgres PSQL, or the AWS CLI is to extend the liquibase/liquibase Dockerfile. Examples are provided in the [Examples](/examples) Directory.
6 changes: 6 additions & 0 deletions examples/aws/Dockerfile.awscli
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM liquibase/liquibase:latest
USER root
RUN wget "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -O "awscliv2.zip" && \
unzip awscliv2.zip && rm -rf awscliv2.zip && \
./aws/install
USER liquibase

0 comments on commit 2ec7d62

Please sign in to comment.