good morning!!!!

Skip to content
Snippets Groups Projects
Commit 57898e43 authored by Victor Castell's avatar Victor Castell
Browse files

Final touches to Dockerfiles

parent 0aa8feeb
Branches
Tags
No related merge requests found
...@@ -25,3 +25,5 @@ COPY --from=builder /bor/build/bin/bor /usr/local/bin/ ...@@ -25,3 +25,5 @@ COPY --from=builder /bor/build/bin/bor /usr/local/bin/
COPY --from=builder /bor/build/bin/bootnode /usr/local/bin/ COPY --from=builder /bor/build/bin/bootnode /usr/local/bin/
EXPOSE 8545 8546 8547 30303 30303/udp EXPOSE 8545 8546 8547 30303 30303/udp
ENTRYPOINT ["bor"]
...@@ -9,7 +9,10 @@ RUN cd /bor && make bor-all ...@@ -9,7 +9,10 @@ RUN cd /bor && make bor-all
# Pull all binaries into a second stage deploy alpine container # Pull all binaries into a second stage deploy alpine container
FROM alpine:latest FROM alpine:latest
RUN apk add --no-cache ca-certificates RUN set -x \
&& apk add --update --no-cache \
ca-certificates \
&& rm -rf /var/cache/apk/*
COPY --from=builder /bor/build/bin/* /usr/local/bin/ COPY --from=builder /bor/build/bin/* /usr/local/bin/
EXPOSE 8545 8546 30303 30303/udp EXPOSE 8545 8546 30303 30303/udp
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment