forked from lx/netapp
10 lines
200 B
Text
10 lines
200 B
Text
|
FROM archlinux:latest
|
||
|
|
||
|
COPY target/release/examples/basalt /root/basalt
|
||
|
|
||
|
CMD /root/basalt
|
||
|
ENV RUST_BACKTRACE=1
|
||
|
ENV RUST_LOG=netapp=debug,basalt=debug
|
||
|
|
||
|
CMD /garage/garage server -c /garage/config.toml
|