mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-08 03:49:41 +00:00
11 lines
281 B
Text
11 lines
281 B
Text
|
# Switch to a non-root user
|
||
|
RUN useradd --system --create-home --shell /sbin/nologin bitcoin
|
||
|
USER bitcoin
|
||
|
WORKDIR /home/bitcoin
|
||
|
|
||
|
COPY --from=bitcoin --chown=bitcoin bitcoind /bin
|
||
|
COPY ./scripts /scripts
|
||
|
|
||
|
EXPOSE 8332 8333 18332 18333 18443 18444
|
||
|
# VOLUME ["/home/bitcoin/.bitcoin"]
|