add xtask to push docker image

This commit is contained in:
2024-09-02 20:00:05 +02:00
parent 0b02efc752
commit 60bd5acd35
2 changed files with 20 additions and 2 deletions

View File

@ -1,8 +1,8 @@
FROM rust:1.80
COPY . /usr/app
COPY battlesnake/ /usr/app
WORKDIR /usr/app
RUN cargo install --path battlesnake
RUN cargo install --path .
CMD ["battlesnake"]