Skip to content

Commit bac4f1d

Browse files
committed
Remove Vault version check and cleanup from Dockerfile
1 parent f5c0927 commit bac4f1d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ RUN set -ex \
3232
done \
3333
&& update-alternatives --set php /usr/bin/php${DEFAULT_PHP_VERSION} \
3434
# cleanup
35-
&& rm -f vault_${VAULT_VERSION}_linux_amd64.zip \
3635
&& apt-get remove software-properties-common unzip -y \
3736
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
3837
&& { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; } \
@@ -48,8 +47,7 @@ RUN set -ex \
4847
&& for v in $PHP_BINARIES_TO_PREINSTALL; do \
4948
php"$v" -v; \
5049
done \
51-
&& php -v \
52-
&& vault -v;
50+
&& php -v;
5351

5452
COPY entrypoint.sh main.sh /usr/local/bin/
5553

0 commit comments

Comments
 (0)