From 57918b69a73575f2a537659e1bd34fa85cfbdb89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ennio=20Sim=C3=B5es?= Date: Sun, 26 Nov 2017 17:30:32 -0200 Subject: [PATCH] adding '\' to the Dockerfile nginx statement --- nginx/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/Dockerfile b/nginx/Dockerfile index 7fe2982..9b7de6f 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -9,7 +9,7 @@ ADD nginx.conf /etc/nginx/ ARG CHANGE_SOURCE=false RUN if [ ${CHANGE_SOURCE} = true ]; then \ # Change application source from dl-cdn.alpinelinux.org to aliyun source - RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories + RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories \ ;fi RUN apk update \