Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

fix docker build #9971

Merged
merged 1 commit into from
Nov 27, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion scripts/docker/hub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"]