Files
Signlanguage_Datacollector/backend/Dockerfile

11 lines
168 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 ["python", "main.py"]