You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
305 B
11 lines
305 B
FROM docker.io/hashicorp/terraform:latest
|
|
|
|
WORKDIR /opt/decort/tf/
|
|
COPY provider.tf ./
|
|
COPY terraform-provider-decort ./terraform.d/plugins/digitalenergy.online/decort/decort/3.3.1/linux_amd64/
|
|
RUN terraform init
|
|
|
|
WORKDIR /tf
|
|
COPY entrypoint.sh /
|
|
ENTRYPOINT ["/entrypoint.sh", "/bin/terraform"]
|