docker-dev: add go version as build arg (#10117)

This commit is contained in:
Jason O'Donnell
2020-10-08 14:30:31 -04:00
committed by GitHub
parent b7ee07ae7e
commit 9204c47af7
3 changed files with 7 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
# Multi-stage builder to avoid polluting users environment with wrong
# architecture binaries. Since this binary is used in an alpine container,
# Multi-stage builder to avoid polluting users environment with wrong
# architecture binaries. Since this binary is used in an alpine container,
# we're explicitly compiling for 'linux/amd64'
ARG VERSION=1.13.10
ARG VERSION=1.14.7
FROM golang:${VERSION} AS builder

View File

@@ -3,7 +3,7 @@
# we're explicitly compiling for 'linux/amd64'
FROM debian:buster AS builder
ARG VERSION=1.13.10
ARG VERSION=1.14.7
ARG CGO_ENABLED=0
ARG BUILD_TAGS
ENV JOBS=2