Skip to content

Commit

Permalink
Merge pull request #33 from cbdq-io/feature/awscli
Browse files Browse the repository at this point in the history
Add the AWS CLI to the image.
  • Loading branch information
dallinb authored Sep 19, 2024
2 parents ceec4e7 + 830f3ea commit 43de40d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ COPY --chmod=755 backup.sh /usr/local/bin/backup.sh
COPY --chmod=755 restore.sh /usr/local/bin/restore.sh

# hadolint ignore=DL3008
RUN apt-get upgrade -y --no-install-recommends --only-upgrade
RUN apt-get clean \
&& apt-get update \
&& apt-get upgrade -y --no-install-recommends --only-upgrade \
&& apt-get install --no-install-recommends --yes awscli \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

USER odoo

0 comments on commit 43de40d

Please sign in to comment.