microservices/deployment-service/snakeapi_service/dockerfile

16 lines
271 B
Text
Raw Normal View History

2025-04-25 09:21:18 -07:00
FROM python:3.11-slim
WORKDIR /app
2025-04-29 11:40:06 -07:00
RUN pip install --no-cache-dir jupyter flask awscli flask_cors nbconvert nbformat
2025-04-25 09:21:18 -07:00
COPY entrypoint.sh .
COPY battlesnake_server.py .
COPY notebook.ipynb .
RUN chmod +x entrypoint.sh
ENV PORT=3006
EXPOSE 3006
CMD ["./entrypoint.sh"]