forked from integritee-network/parachain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
28 lines (22 loc) · 912 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
FROM phusion/baseimage:focal-1.0.0
LABEL maintainer="[email protected]"
LABEL description="This is the 2nd stage: a very small image where we copy the Substrate binary."
RUN mv /usr/share/ca* /tmp && \
rm -rf /usr/share/* && \
mv /tmp/ca-certificates /usr/share/ && \
useradd -m -u 1000 -U -s /bin/sh -d /integritee integritee && \
mkdir -p /integritee/.local/share/integritee-collator && \
chown -R integritee:integritee /integritee/.local && \
ln -s /integritee/.local/share/integritee-collator /data
COPY integritee-collator /usr/local/bin
RUN chmod +x /usr/local/bin/integritee-collator
# checks
RUN ldd /usr/local/bin/integritee-collator && \
/usr/local/bin/integritee-collator --version
# Shrinking
RUN rm -rf /usr/lib/python* && \
rm -rf /usr/bin /usr/sbin /usr/share/man
USER integritee
EXPOSE 30333 9933 9944 9615
VOLUME ["/data"]
ENTRYPOINT ["/usr/local/bin/integritee-collator"]