change to new code of battlesnake

This commit is contained in:
2024-04-01 01:41:06 +02:00
parent 11c1adf96c
commit a2f8f5b800
6 changed files with 134 additions and 136 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM python:3.10.6-slim
# Install app
COPY . /usr/app
WORKDIR /usr/app
# Install dependencies
RUN pip install --upgrade pip && pip install -r requirements.txt
# Run Battlesnake
CMD [ "python", "main.py" ]