0g-storage-node/DockerfileTurbo

6 lines
258 B
Plaintext
Raw Normal View History

2024-10-18 08:29:02 +00:00
FROM rust
VOLUME ["/data"]
COPY . .
RUN apt-get update && apt-get install -y clang cmake build-essential pkg-config libssl-dev
RUN cargo build --release
CMD ["./target/release/zgs_node", "--config", "run/config-testnet-turbo.toml", "--log", "run/log_config"]