Skip to content
Snippets Groups Projects
Commit 0599334d authored by Bo-Chun Chen's avatar Bo-Chun Chen
Browse files

Install wget in docker image

parent 560e9848
No related branches found
No related tags found
No related merge requests found
......@@ -6,14 +6,15 @@ ENV OSC_VER=5.8.0
ENV TF_VER=1.4.6
ADD ./packer /usr/local/bin
RUN wget https://releases.hashicorp.com/terraform/${TF_VER}/terraform_${TF_VER}_linux_amd64.zip \
&& unzip terraform_${TF_VER}_linux_amd64.zip \
&& rm terraform_${TF_VER}_linux_amd64.zip
RUN apt-get update && apt-get install --no-install-recommends -y \
git \
ssh \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*
RUN wget https://releases.hashicorp.com/terraform/${TF_VER}/terraform_${TF_VER}_linux_amd64.zip \
&& unzip terraform_${TF_VER}_linux_amd64.zip \
&& rm terraform_${TF_VER}_linux_amd64.zip
RUN pip install --no-cache-dir --upgrade pip \
&& pip install --no-cache-dir \
s3cmd==$S3CMD_VER \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment