From 9acc854ab5b304d8c83176178a5b66815000ef71 Mon Sep 17 00:00:00 2001 From: gabriel Date: Tue, 27 Nov 2018 12:00:48 +0100 Subject: [PATCH] fix docker build --- scripts/docker/hub/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/docker/hub/Dockerfile b/scripts/docker/hub/Dockerfile index bcc204018e7..d40a662111f 100644 --- a/scripts/docker/hub/Dockerfile +++ b/scripts/docker/hub/Dockerfile @@ -18,7 +18,6 @@ RUN rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/* RUN groupadd -g 1000 parity \ && useradd -m -u 1000 -g parity -s /bin/sh parity -USER parity #add TARGET to docker image COPY artifacts/x86_64-unknown-linux-gnu/$TARGET /bin/$TARGET @@ -29,6 +28,9 @@ RUN chmod +x ./entrypoint.sh COPY scripts/docker/hub/check_sync.sh /check_sync.sh +# switch to user parity here +USER parity + # setup ENTRYPOINT EXPOSE 5001 8080 8082 8083 8545 8546 8180 30303/tcp 30303/udp ENTRYPOINT ["./entrypoint.sh"]