forked from integritee-network/parachain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
35 lines (26 loc) · 1.03 KB
/
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
29
30
31
32
33
34
35
FROM phusion/baseimage:jammy-1.0.1
LABEL maintainer="[email protected]"
LABEL description="This is the 2nd stage: a very small image where we copy the Substrate binary."
RUN apt-get update && \
apt-get install -y jq
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
COPY ./scripts/healthcheck9933.sh /usr/local/bin
RUN chmod +x /usr/local/bin/integritee-collator
RUN chmod +x /usr/local/bin/healthcheck9933.sh
# 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"]