tranny / Dockerfile
Mbonea's picture
hello
252d749
raw
history blame
377 Bytes
# Builder stage
FROM python:3.9.13-slim as builder
WORKDIR /srv
RUN apt-get update && apt-get install -y git ffmpeg aria2 \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . /srv
CMD uvicorn App.app:app --host 0.0.0.0 --port 7860 & celery -A App.Worker.celery worker -c 1 --loglevel=info
EXPOSE 7860