what-a-shot / Dockerfile
szymonrucinski's picture
Update Dockerfile
722f1fd
raw
history blame
No virus
424 Bytes
from condaforge/mambaforge
ENV MPLCONFIGDIR=".config/matplotlib"
RUN git clone https://github.com/szymonrucinski/AiRoll
WORKDIR /AiRoll
RUN git clone https://huggingface.co/szymonrucinski/what-a-shot
RUN ls
RUN mv ./what-a-shot ./model
RUN conda env create -f environment.yaml && conda info
SHELL ["conda", "run", "-n", "airoll", "/bin/bash", "-c"]
EXPOSE 7860
CMD ["conda", "run", "-n", "airoll", "python", "start_api.py"]