Skip to content

Commit

Permalink
fix: add s3 lib to greenmask
Browse files Browse the repository at this point in the history
  • Loading branch information
achauve committed Jun 4, 2024
1 parent 9511153 commit 2725051
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion greenmask/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 \
Expand Down

0 comments on commit 2725051

Please sign in to comment.