Explicitly pass our config to the start command

Resolves #1005
This commit is contained in:
Deirdre Connolly 2020-09-04 00:46:19 -04:00 committed by Deirdre Connolly
parent 48497d4857
commit a9029beb87
1 changed files with 1 additions and 1 deletions

View File

@ -22,4 +22,4 @@ FROM debian:buster-slim
COPY --from=builder /zebra/target/release/zebrad /
RUN echo "[tracing]\nendpoint_addr = '0.0.0.0:3000'" > /zebrad.toml
EXPOSE 3000 8233 18233
CMD [ "/zebrad", "start" ]
CMD [ "/zebrad", "-c", "/zebrad.toml", "start" ]