Spaces:
Sleeping
Sleeping
szymonrucinski
commited on
Commit
•
6a9e302
1
Parent(s):
25610da
Create Dockerfile
Browse files- Dockerfile +10 -0
Dockerfile
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 mamba env create -f env.yml
|
8 |
+
RUN conda activate AiRoll
|
9 |
+
RUN gradio start_api.py
|
10 |
+
EXPOSE 7860
|