Spaces:
Runtime error
Runtime error
FROM python:3.9 | |
COPY requirements.txt /app/requirements.txt | |
WORKDIR /app | |
RUN pip install seaborn | |
RUN pip install gradio | |
RUN pip install datetime | |
RUN pip install numpy | |
RUN pip install opencv-python | |
RUN apt-get update | |
RUN apt-get install ffmpeg libsm6 libxext6 -y | |
RUN pip install -r requirements.txt | |
COPY . /app | |
# EXPOSE 7860 | |
CMD python app.py | |
# hello world | |