mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-23 00:11:41 -04:00
6 lines
245 B
Docker
6 lines
245 B
Docker
FROM golang:1.8.3
|
|
ARG GLIDE_VERSION=0.12.3
|
|
|
|
RUN wget -nv https://github.com/Masterminds/glide/releases/download/v$GLIDE_VERSION/glide-v$GLIDE_VERSION-linux-amd64.tar.gz -O- | \
|
|
tar xzf - -C /usr/local/bin/ --strip-components=1 linux-amd64/glide
|