mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-19 09:15:06 +00:00
16 lines
431 B
Text
16 lines
431 B
Text
|
# Install ca-certificates
|
||
|
RUN apt install -y ca-certificates
|
||
|
|
||
|
# Switch to a non-root user
|
||
|
RUN useradd --system --create-home --shell /sbin/nologin coordinator
|
||
|
USER coordinator
|
||
|
|
||
|
WORKDIR /home/coordinator
|
||
|
|
||
|
# Copy the Coordinator binary and relevant license
|
||
|
COPY --from=builder --chown=processsor /serai/bin/serai-coordinator /bin/
|
||
|
COPY --from=builder --chown=processsor /serai/AGPL-3.0 .
|
||
|
|
||
|
# Run coordinator
|
||
|
CMD ["serai-coordinator"]
|