From 95dd50c6a921afda25caad12b21d425052afc4b6 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Mon, 3 Feb 2020 01:11:39 +0300 Subject: [PATCH] Fix quotes --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5ccbbff..ef2b2e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,4 +2,4 @@ FROM wernight/dante # TODO: Replace 'john' and 'MyPassword' by any username/password you want. ENV PASS MyPassword -RUN printf '${PASS}\n${PASS}\n' | adduser john +RUN printf "${PASS}\n${PASS}\n" | adduser john