All checks were successful
Run Check Script / check (pull_request) Successful in 1m36s
14 lines
310 B
Docker
14 lines
310 B
Docker
FROM debian:13-slim
|
|
|
|
# RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
# ca-certificates \
|
|
# && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY harmony-node-readiness-endpoint /usr/local/bin/harmony-node-readiness-endpoint
|
|
|
|
ENV RUST_LOG=info
|
|
|
|
EXPOSE 25001
|
|
|
|
CMD ["harmony-node-readiness-endpoint"]
|