13 lines
263 B
Docker
13 lines
263 B
Docker
FROM python:3.11
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
|
RUN apt update && apt install -y ffmpeg
|
|
|
|
COPY . .
|
|
|
|
CMD ["sh", "-c", "celery -A src.routers.signvideo worker --loglevel=INFO & python main.py"]
|
|
# CMD ["python", "main.py"] |