HIMANEESH123/posture_correction
0
1FROM python:3.11-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6 git \7 git-lfs \8 ffmpeg \9 libsm6 \10 libxext6 \11 libgl1 \12 && rm -rf /var/lib/apt/lists/*13 14COPY . /app15 16RUN pip install --upgrade pip17 18RUN pip install -r requirements.txt19 20EXPOSE 786021 22CMD ["python", "app.py"]23 