Skip to content

Commit

Permalink
Modified Base Image
Browse files Browse the repository at this point in the history
  • Loading branch information
upodroid committed Aug 17, 2019
1 parent 5cdf70c commit a197b9f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Terraform GitHub Actions
These official Terraform GitHub Actions allow you to run `terraform fmt`, `validate`, `plan` and `apply` on your pull requests to help you review, validate and apply Terraform changes.

## This is forked repo with a modified base docker image.

## Getting Started
To get started, check out our documentation: [https://www.terraform.io/docs/github-actions/getting-started/](https://www.terraform.io/docs/github-actions/getting-started/).

Expand Down
2 changes: 1 addition & 1 deletion apply/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hashicorp/terraform:0.12.6
FROM quay.io/upodroid/build-image

LABEL "com.github.actions.name"="terraform apply"
LABEL "com.github.actions.description"="Run Terraform Apply"
Expand Down
2 changes: 1 addition & 1 deletion fmt/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hashicorp/terraform:0.12.6
FROM quay.io/upodroid/build-image:latest

LABEL "com.github.actions.name"="terraform fmt"
LABEL "com.github.actions.description"="Validate terraform files are formatted"
Expand Down
2 changes: 1 addition & 1 deletion init/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hashicorp/terraform:0.12.6
FROM quay.io/upodroid/build-image

LABEL "com.github.actions.name"="terraform init"
LABEL "com.github.actions.description"="Run terraform init"
Expand Down
2 changes: 1 addition & 1 deletion plan/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hashicorp/terraform:0.12.6
FROM quay.io/upodroid/build-image:latest

LABEL "com.github.actions.name"="terraform plan"
LABEL "com.github.actions.description"="Run terraform plan"
Expand Down
2 changes: 1 addition & 1 deletion validate/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hashicorp/terraform:0.12.6
FROM quay.io/upodroid/build-image:latest

LABEL "com.github.actions.name"="terraform validate"
LABEL "com.github.actions.description"="Validate the terraform files in a directory"
Expand Down

0 comments on commit a197b9f

Please sign in to comment.