6 lines
77 B
Docker
6 lines
77 B
Docker
|
FROM alpine:3.16
|
||
|
|
||
|
RUN apk add --no-cache terraform
|
||
|
|
||
|
ENTRYPOINT ["terraform"]
|