8 lines
171 B
Docker
8 lines
171 B
Docker
FROM archlinux:latest
|
|
|
|
COPY target/release/examples/basalt /root/basalt
|
|
|
|
ENV RUST_BACKTRACE=1
|
|
ENV RUST_LOG=netapp=info,netapp::peering=debug,basalt=info
|
|
|
|
CMD /root/basalt
|