CreativeBots/backend/Dockerfile
Tobias Weise 542548b902
All checks were successful
Gitea Docker Redeploy / Explore-Gitea-Actions (push) Successful in 2s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
more stuff
2024-08-02 00:43:13 +02:00

18 lines
401 B
Docker

FROM python:3.12
RUN apt-get update
RUN apt-get install -y firefox-esr
RUN apt-get install -y ffmpeg
RUN apt-get install -y espeak-ng
#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"]