8 lines
353 B
Docker
8 lines
353 B
Docker
FROM debian:bookworm-slim
|
|
|
|
RUN apt-get update && apt-get -y install curl wget bash unzip python3 nodejs npm
|
|
|
|
RUN curl https://sdk.cloud.google.com > install.sh && bash install.sh --disable-prompts
|
|
|
|
RUN wget https://releases.hashicorp.com/terraform/1.7.4/terraform_1.7.4_linux_amd64.zip && unzip terraform_1.7.4_linux_amd64.zip && mv terraform /usr/bin/
|