Skip to content

Commit 7d12b98

Browse files
committed
Split ARG commands
Signed-off-by: Daniel Widerin <daniel@widerin.net>
1 parent 1ed2da4 commit 7d12b98

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ FROM frolvlad/alpine-glibc:latest
22

33
MAINTAINER Daniel Widerin <daniel@widerin.net>
44

5-
ARG OC_VERSION=4.2 \
6-
BUILD_DEPS='tar gzip' \
7-
RUN_DEPS='curl ca-certificates gettext'
5+
ARG OC_VERSION=4.2
6+
ARG BUILD_DEPS='tar gzip'
7+
ARG RUN_DEPS='curl ca-certificates gettext'
88

99
RUN apk --no-cache add $BUILD_DEPS $RUN_DEPS && \
1010
curl -sLo /tmp/oc.tar.gz https://mirror.openshift.com/pub/openshift-v$(echo $OC_VERSION | cut -d'.' -f 1)/clients/oc/$OC_VERSION/linux/oc.tar.gz && \

0 commit comments

Comments
 (0)