initial commit

This commit is contained in:
2024-09-02 15:16:32 +02:00
commit c605d2887a
14 changed files with 2128 additions and 0 deletions

8
Dockerfile Normal file
View File

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