mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-20 17:54:38 +00:00
11 lines
285 B
Text
11 lines
285 B
Text
|
# Switch to a non-root user
|
||
|
# System user (not a human), shell of nologin, no password assigned
|
||
|
RUN useradd --system --create-home --shell /sbin/nologin monero
|
||
|
USER monero
|
||
|
|
||
|
WORKDIR /home/monero
|
||
|
COPY --from=monero --chown=monero monero-wallet-rpc /bin
|
||
|
ADD scripts /scripts
|
||
|
|
||
|
EXPOSE 6061
|