CreativeBots/backend/Dockerfile
Tobias Weise 08812c6d94
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
async gen, ui improvements
2024-08-01 03:05:11 +02:00

13 lines
330 B
Docker

FROM python:3.12
RUN apt-get update && apt-get install -y firefox-esr
#RUN curl https://ollama.ai/install.sh | sh
#RUN ollama run llama2
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
ENTRYPOINT ["python3", "app.py"]
#ENTRYPOINT ["fastapi", "run", "main.py", "--port", "8000"]