Skip to content

Commit

Permalink
adde changes
Browse files Browse the repository at this point in the history
  • Loading branch information
prashantrakh committed Feb 4, 2025
1 parent 51cea62 commit e38389d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions deployer-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@ FROM gcr.io/cloud-marketplace-tools/k8s/deployer_envsubst:latest

ARG TERRAFORM_VERSION=1.5.3

RUN apt-get update && apt-get install -y wget unzip git \
&& wget https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip \
&& unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /usr/local/bin/ \
&& rm terraform_${TERRAFORM_VERSION}_linux_amd64.zip \
&& apt-get remove -y wget unzip && apt-get autoremove -y && apt-get clean
RUN apt-get update && apt-get install -y wget unzip git jq && \
wget https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /usr/local/bin/ && \
rm terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
wget -O /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 && \
chmod +x /usr/local/bin/yq && \
apt-get remove -y wget unzip && apt-get autoremove -y && apt-get clean

LABEL com.googleapis.cloudmarketplace.product.service.name=services/stackgen-enterprise-platform-k8s-v2.endpoints.stackgen-gcp-marketplace.cloud.goog

Expand Down

0 comments on commit e38389d

Please sign in to comment.