Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Syntax3rror404 committed Aug 24, 2024
1 parent 36e38d2 commit dce802f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Install Terraform CLI
ARG TERRAFORM_VERSION=1.9.5
RUN curl -L "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip" -o terraform.zip && \
unzip terraform.zip -d /usr/local/bin/ && \
unzip -o terraform.zip -d /usr/local/bin/ && \
rm terraform.zip

# Install Packer
ARG PACKER_VERSION=1.11.2
RUN curl -L "https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip" -o packer.zip && \
unzip packer.zip -d /usr/local/bin/ && \
unzip -o packer.zip -d /usr/local/bin/ && \
rm packer.zip

# Install TFE_helper in /usr/local/tf-helper/bin
Expand Down

0 comments on commit dce802f

Please sign in to comment.