mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
10 lines
300 B
Groff
10 lines
300 B
Groff
FROM ubuntu:xenial
|
|
|
|
RUN apt-get update -y
|
|
RUN apt-get install -y sudo curl git unzip wget unzip
|
|
RUN wget -nc https://releases.hashicorp.com/terraform/0.8.5/terraform_0.8.5_linux_amd64.zip -O terraform.zip
|
|
RUN unzip terraform.zip
|
|
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US:en
|
|
ENV LC_ALL en_US.UTF-8
|