Use updated 'zebrad seed' command, move binary to root, no workdir

This commit is contained in:
Deirdre Connolly 2020-06-17 02:57:14 -04:00 committed by Deirdre Connolly
parent 29117f7c73
commit 30f01c6ff0
2 changed files with 3 additions and 4 deletions

View File

@ -56,5 +56,5 @@ jobs:
gcloud compute instance-groups managed create "zebrad-$SHORT_BRANCH_NAME-$SHA7" \
--template "zebrad-$SHORT_BRANCH_NAME-$SHA7" \
--base-instance-name "zebrad-$SHORT_BRANCH_NAME-$SHA7" \
--size 3 \
--size 1 \
--zone "$GCLOUD_ZONE"

View File

@ -19,8 +19,7 @@ RUN rustc -V; cargo -V; rustup -V; cargo test --all && cargo build --release
FROM debian:buster-slim
WORKDIR /zebra
COPY --from=builder /zebra/target/release/zebrad .
COPY --from=builder /zebra/target/release/zebrad /
EXPOSE 8233
EXPOSE 18233
CMD [ "./zebrad", "seed" ]
CMD [ "/zebrad", "start" ]