Update Dockerfile.custom

This commit is contained in:
Andrejs Cunskis 2022-04-28 19:38:02 +03:00
parent 9906770111
commit 06a761ebf6
No known key found for this signature in database
GPG key ID: 87CB75083F227241
3 changed files with 13 additions and 3 deletions

View file

@ -83,6 +83,16 @@ ARG BAZELISK_DOWNLOAD_SHA256
RUN if [ -n "$BAZELISK_VERSION" ] ; then /scripts/install-bazelisk $BAZELISK_VERSION $BAZELISK_DOWNLOAD_SHA256; fi
# GCLOUD
ARG GCLOUD_VERSION
RUN if [ -n "$GCLOUD_VERSION" ] ; then /scripts/install-gcloud $GCLOUD_VERSION; fi
# GCLOUD
ARG KUBECTL_VERSION
RUN if [ -n "$KUBECTL_VERSION" ] ; then /scripts/install-kubectl $KUBECTL_VERSION; fi
RUN locale-gen C.UTF-8
ENV LANG=C.UTF-8 \
LANGUAGE=C \
@ -101,4 +111,6 @@ ENV RUBY_VERSION=${RUBY_VERSION} \
DOCKER_VERSION=${DOCKER_VERSION} \
PGBOUNCER_VERSION=${PGBOUNCER_VERSION} \
BAZELISK_VERSION=${BAZELISK_VERSION} \
GCLOUD_VERSION=${GCLOUD_VERSION} \
KUBECTL_VERSION=${KUBECTL_VERSION} \
DEBIAN_VERSION=${DEBIAN_VERSION}