-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(create-release.yml): add dockerfile parameter to docker/build-p…
…ush-action to specify the Dockerfile to use docs(README.md): remove outdated examples for liquibase-alpine and add new examples for extending liquibase-alpine and liquibase-slim images build(Dockerfile.awscli): add unzip package to install AWS CLI in liquibase image build(Dockerfile.slim.awscli): create new Dockerfile to install AWS CLI in liquibase-slim image using apk package manager
- Loading branch information
jandroav
committed
Jun 6, 2023
1 parent
1fde1d0
commit 4d3f6bd
Showing
4 changed files
with
33 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
FROM liquibase/liquibase:latest | ||
|
||
USER root | ||
|
||
RUN apt-get update -y && \ | ||
apt-get install --no-install-recommends -y unzip && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM liquibase/liquibase-slim:latest | ||
|
||
USER root | ||
|
||
RUN apk add --no-cache wget unzip gnupg | ||
|
||
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 |