File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,17 @@ RUN wget --no-check-certificate --user-agent=Mozilla -O apache-pulsar-client-dev
96
96
&& wget --no-check-certificate --user-agent=Mozilla -O apache-pulsar-client.deb "https://archive.apache.org/dist/pulsar/pulsar-2.8.0/DEB/apache-pulsar-client.deb" \
97
97
&& apt install ./apache-pulsar-client*.deb
98
98
99
+ RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o /tmp/awscliv2.zip \
100
+ && unzip -q /tmp/awscliv2.zip -d /tmp \
101
+ && rm /tmp/awscliv2.zip \
102
+ && ./tmp/aws/install \
103
+ && rm -rf /tmp/aws/
104
+
105
+ RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
106
+ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
107
+ && apt update -y \
108
+ && apt install -y --no-install-recommends yarn
109
+
99
110
# We place the scripts in `/usr/bin` so that users who extend this image can
100
111
# override them with scripts of the same name placed in `/usr/local/bin`.
101
112
COPY entrypoint.sh startup.sh logger.sh graceful-stop.sh update-status /usr/bin/
You can’t perform that action at this time.
0 commit comments