Spaces:
Sleeping
Sleeping
File size: 342 Bytes
676f0c5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
FROM python:3.10.9
WORKDIR /workspace
RUN cd /workspace
RUN apt-get update -y
RUN apt install libgl1-mesa-glx -y
RUN apt-get install 'ffmpeg'\
'libsm6'\
'libxext6' -y
COPY . .
# ADD requirements.txt main.py /workspace/
RUN pip install -r requirements.txt
RUN apt-get update && apt-get install libglu1
CMD ["python", "app.py"] |