From 967f4786e3bae3387051d43df4715d7ac28137af Mon Sep 17 00:00:00 2001 From: Adam Dodman Date: Mon, 9 Jul 2018 15:42:35 +0100 Subject: [PATCH] Remove v from tags --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c217797..30fd922 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG SU_EXEC_VER=v0.3 +ARG SU_EXEC_VER=0.3 ARG ALPINE_TAG=3.8 FROM alpine:$ALPINE_TAG @@ -22,7 +22,7 @@ ENV ENV="/etc/profile" RUN apk --no-cache add \ tini \ libressl \ - && wget -qO /sbin/su-exec https://github.com/frebib/su-exec/releases/download/${SU_EXEC_VER}/su-exec-alpine-$(uname -m) \ + && wget -qO /sbin/su-exec https://github.com/frebib/su-exec/releases/download/v${SU_EXEC_VER}/su-exec-alpine-$(uname -m) \ && chmod +x /sbin/su-exec \ && apk --no-cache del openssl