Skip to content

fix: Install terraform in Docker image to unblock deploy #319

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 18, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Install terraform in Dockerfile
  • Loading branch information
bryphe-coder committed Feb 18, 2022
commit e8e1659aa479edc56ad7397f15acac46c1a99548
4 changes: 4 additions & 0 deletions images/coder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
FROM registry.access.redhat.com/ubi8/ubi:latest

RUN yum install -y yum-utils
RUN yum-config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo
RUN yum install -y terraform

COPY coderd /coder/coderd
RUN chmod +x /coder/coderd

Expand Down