add missing root home dir
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2019-09-23 12:40:01 +02:00
parent c9cd6d68e9
commit 893f796a5a
4 changed files with 4 additions and 1 deletions

View File

@ -34,6 +34,7 @@ RUN \
&& pip install --upgrade pip \
&& pip install --no-cache-dir ${PIP_PACKAGES} \
&& rm -rf /root/.cache \
&& mkdir /root \
USER root
ENTRYPOINT ["/docker-entrypoint.sh"]

View File

@ -35,6 +35,7 @@ RUN \
&& pip install --upgrade pip \
&& pip install --no-cache-dir ${PIP_PACKAGES} \
&& rm -rf /root/.cache \
&& mkdir /root \
USER root
ENTRYPOINT ["/docker-entrypoint.sh"]

View File

@ -35,7 +35,7 @@ RUN \
&& pip install --upgrade pip \
&& pip install --no-cache-dir ${PIP_PACKAGES} \
&& rm -rf /root/.cache \
&& mkdir /root/.ssh \
&& mkdir -p /root/.ssh \
&& chmod 700 /root/.ssh
USER root

View File

@ -35,6 +35,7 @@ RUN \
&& pip install --upgrade pip \
&& pip install --no-cache-dir ${PIP_PACKAGES} \
&& rm -rf /root/.cache \
&& mkdir /root \
USER root
ENTRYPOINT ["/docker-entrypoint.sh"]