We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a12442b commit 070b556Copy full SHA for 070b556
Dockerfile
@@ -11,9 +11,7 @@ RUN deps=' \
11
set -x; \
12
apt-get update \
13
&& apt-get install -y --no-install-recommends $deps \
14
- && curl -o docker-gen.tar.gz -L $DOWNLOAD_URL \
15
- && tar -C /usr/local/bin -xvzf docker-gen.tar.gz \
16
- && rm docker-gen.tar.gz \
+ && curl -L $DOWNLOAD_URL | tar -C /usr/local/bin -xvz \
17
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -o APT::AutoRemove::SuggestsImportant=false $deps \
18
&& apt-get clean -y \
19
&& rm -rf /var/lib/apt/lists/*
0 commit comments