Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6170421

Browse files
authored
fix: Install terraform in Docker image to unblock deploy (#319)
Fixes #287 and re-enables our deploy at https://proto.cdr.dev - Installs `terraform` in our `images/coder/Dockerfile` - Re-enables our `deploy` GH action Example of successful deploy run: https://github.com/coder/coder/runs/5241614008?check_suite_focus=true
1 parent 6bdef06 commit 6170421

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/coder.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -187,12 +187,7 @@ jobs:
187187
deploy:
188188
name: "deploy"
189189
runs-on: ubuntu-latest
190-
# Temporarily disable the 'deploy' job until issue is fixed:
191-
# https://github.com/coder/coder/issues/287
192-
# As a part of a fix for that, uncomment the below line
193-
# and delete the 'if' after:
194-
# if: github.event_name != 'pull_request'
195-
if: false
190+
if: github.event_name != 'pull_request'
196191
permissions:
197192
contents: read
198193
id-token: write

images/coder/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
FROM registry.access.redhat.com/ubi8/ubi:latest
22

3+
RUN yum install -y yum-utils
4+
RUN yum-config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo
5+
RUN yum install -y terraform
6+
37
COPY coderd /coder/coderd
48
RUN chmod +x /coder/coderd
59

0 commit comments

Comments
 (0)