what-a-shot / Dockerfile
szymonrucinski's picture
Update Dockerfile
d687322
raw
history blame
305 Bytes
from condaforge/mambaforge
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 mamba env create -f ./environment.yaml
RUN conda activate airoll
CMD ["gradio", "app.py"]
EXPOSE 7860