mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-23 12:09:37 +00:00
14 lines
325 B
Text
14 lines
325 B
Text
|
RUN apk --no-cache add gcompat
|
||
|
|
||
|
# Switch to a non-root user
|
||
|
# System user (not a human), shell of nologin, no password assigned
|
||
|
RUN adduser -S -s /sbin/nologin -D monero
|
||
|
USER monero
|
||
|
|
||
|
WORKDIR /home/monero
|
||
|
COPY --from=monero --chown=monero monerod /bin
|
||
|
ADD scripts /scripts
|
||
|
|
||
|
EXPOSE 18080 18081
|
||
|
# VOLUME /home/monero/.bitmonero
|