PlayerTV-test / Dockerfile
SushantGautam's picture
Upload folder using huggingface_hub
04d8858 verified
raw
history blame
294 Bytes
FROM continuumio/miniconda3
WORKDIR /app
COPY . /app
COPY environment.yml /app/environment.yml
RUN apt-get update && apt-get install -y \
libgl1-mesa-glx \
libglib2.0-0
RUN conda env create -f environment.yml
EXPOSE 7860
CMD ["conda", "run", "-n", "playerTV", "python", "app.py"]