Skip to content

Commit

Permalink
build: remove quotes around ARG default values
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Fajerski <[email protected]>
  • Loading branch information
jan--f committed Oct 17, 2024
1 parent ff963d0 commit 7c627b8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG ARCH="amd64"
ARG OS="linux"
ARG GOLANG_BUILDER="1.23"
ARG ARCH=amd64
ARG OS=linux
ARG GOLANG_BUILDER=1.23
FROM quay.io/prometheus/golang-builder:${GOLANG_BUILDER}-base as builder
WORKDIR /workspace

Expand Down
6 changes: 3 additions & 3 deletions cmd/admission-webhook/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG ARCH="amd64"
ARG OS="linux"
ARG GOLANG_BUILDER="1.23"
ARG ARCH=amd64
ARG OS=linux
ARG GOLANG_BUILDER=1.23
FROM quay.io/prometheus/golang-builder:${GOLANG_BUILDER}-base as builder
WORKDIR /workspace

Expand Down
6 changes: 3 additions & 3 deletions cmd/prometheus-config-reloader/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG ARCH="amd64"
ARG OS="linux"
ARG GOLANG_BUILDER="1.23"
ARG ARCH=amd64
ARG OS=linux
ARG GOLANG_BUILDER=1.23
FROM quay.io/prometheus/golang-builder:${GOLANG_BUILDER}-base as builder
WORKDIR /workspace

Expand Down

0 comments on commit 7c627b8

Please sign in to comment.