brain / Dockerfile
Amoo0206
Deploy Brain: Flask API + Codespace manager + dashboard
cc87db5
Raw
History Blame Contribute Delete
290 Bytes
FROM python:3.11-slim
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
COPY requirements.txt /requirements.txt
RUN pip3 install --no-cache-dir -r /requirements.txt
COPY brain.py /brain.py
COPY templates/ /templates/
EXPOSE 7860
CMD ["python3", "/brain.py"]