diff --git a/greenmask/Dockerfile b/greenmask/Dockerfile index e124fd216..05a4113fd 100644 --- a/greenmask/Dockerfile +++ b/greenmask/Dockerfile @@ -3,7 +3,7 @@ FROM node:$NODE_VERSION # hadolint ignore=DL3008 RUN apt-get update && \ - apt-get install -yq --no-install-recommends wget ca-certificates postgresql-common \ + apt-get install -yq --no-install-recommends wget ca-certificates postgresql-common unzip \ && rm -rf /var/lib/apt/lists/* RUN /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y @@ -13,6 +13,11 @@ RUN apt-get update \ && apt-get install -yq --no-install-recommends postgresql-client-15 \ && rm -rf /var/lib/apt/lists/* +# install AWS CLI +RUN wget "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" \ + && unzip awscli-exe-linux-x86_64.zip \ + && ./aws/install + # install greenmask cli # hadolint ignore=DL3059,DL3047 RUN wget https://github.com/GreenmaskIO/greenmask/releases/download/v0.1.14/greenmask-linux-amd64.tar.gz \