Add some snakes

This commit is contained in:
2023-09-07 22:36:08 -05:00
parent 4c6b305aca
commit 6de4111b05
5 changed files with 186 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM python:3.11.4-slim
# FROM continuumio/conda-ci-linux-64-python3.8
# FROM continuumio/miniconda3
# Install app
COPY . /app
WORKDIR /app
# Install dependencies
RUN pip install --upgrade pip && pip install -r requirements.txt
# RUN conda env create -f environment.yaml
# ENV CONDA_DEFAULT_ENV battlesnake
# Run Battlesnake
ENTRYPOINT [ "python", "server.py" ]
CMD [ "StarterSnake" ]