7 lines
192 B
Docker
7 lines
192 B
Docker
|
FROM hashicorp/terraform:latest
|
||
|
|
||
|
COPY . .
|
||
|
RUN mkdir ~/.aws
|
||
|
RUN cp credentials ~/.aws
|
||
|
|
||
|
ENTRYPOINT terraform init && terraform apply -auto-approve && sleep 300 && terraform destroy -auto-approve
|