szymonrucinski commited on
Commit
65922ae
1 Parent(s): f39e53a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -1,11 +1,11 @@
1
  from condaforge/mambaforge
2
 
3
  RUN git clone https://github.com/szymonrucinski/AiRoll
4
- RUN cd AiRoll
5
  RUN git clone https://huggingface.co/szymonrucinski/what-a-shot
6
- RUN mv ./what-a-shot ./model
7
  RUN ls
8
- RUN mamba env create -f ./environment.yaml
9
- RUN conda activate AiRoll
 
10
  CMD ["gradio", "app.py"]
11
  EXPOSE 7860
 
1
  from condaforge/mambaforge
2
 
3
  RUN git clone https://github.com/szymonrucinski/AiRoll
4
+ RUN cd ./AiRoll
5
  RUN git clone https://huggingface.co/szymonrucinski/what-a-shot
 
6
  RUN ls
7
+ RUN mv ./what-a-shot ./model
8
+ RUN mamba env create -f env.yml
9
+ RUN conda activate airoll
10
  CMD ["gradio", "app.py"]
11
  EXPOSE 7860