You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
FROM i_swapclient as install_stage
|
|
|
|
|
|
|
|
RUN basicswap-prepare --preparebinonly --bindir=/coin_bin --withcoin=particl && \
|
|
|
|
find /coin_bin -name *.tar.gz -delete
|
|
|
|
|
|
|
|
FROM debian:bullseye-slim
|
|
|
|
COPY --from=install_stage /coin_bin .
|
|
|
|
|
|
|
|
ENV PARTICL_DATA /data
|
|
|
|
|
|
|
|
RUN groupadd -r particl && useradd -r -m -g particl particl \
|
|
|
|
&& apt-get update \
|
|
|
|
&& apt-get install -qq --no-install-recommends gosu \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
|
|
&& mkdir -p "$PARTICL_DATA" \
|
|
|
|
&& chown -R particl:particl "$PARTICL_DATA" \
|
|
|
|
&& ln -sfn "$PARTICL_DATA" /home/particl/.particl \
|
|
|
|
&& chown -h particl:particl /home/particl/.particl
|
|
|
|
VOLUME /data
|
|
|
|
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
|
|
|
|
EXPOSE 51735 20792 51738
|
|
|
|
CMD ["/particl/particld", "--datadir=/data"]
|