We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c458de commit 167f70bCopy full SHA for 167f70b
Dockerfile
@@ -19,8 +19,9 @@ RUN apt-get update && apt-get -y --no-install-recommends install \
19
# to run as non-root user
20
ENV USER jekyll
21
ENV USERHOME /home/${USER}
22
-RUN useradd ${USER}
23
-RUN mkdir ${USERHOME} && chown -R ${USER}:jekyll ${USERHOME}
+RUN useradd ${USER} \
+ && mkdir ${USERHOME} \
24
+ && chown -R ${USER}:jekyll ${USERHOME}
25
26
WORKDIR ${USERHOME}
27
0 commit comments