Skip to content

Commit ad43140

Browse files
Fix terraform install
1 parent 4376003 commit ad43140

2 files changed

Lines changed: 1 addition & 8 deletions

File tree

.github/workflows/test.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,3 @@ jobs:
3131
--build-arg FETCHER_IMAGE_VERSION=${FETCHER_IMAGE_VERSION} \
3232
--build-arg BASE_IMAGE_VERSION=${BASE_IMAGE_VERSION} \
3333
--file Dockerfile --tag $IMAGE_NAME
34-
test-image-ls:
35-
runs-on: ubuntu-latest
36-
37-
steps:
38-
- name: Run tests
39-
run: |
40-
docker image ls

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN wget -O- https://download.docker.com/linux/static/stable/x86_64/docker-${DOC
4242
RUN chmod +x /usr/local/bin/docker
4343

4444
# Terraform https://github.com/hashicorp/terraform
45-
RUN wget -O- https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip
45+
RUN wget https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip
4646
RUN unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /tmp
4747
RUN chmod +x /tmp/terraform
4848

0 commit comments

Comments
 (0)