Spaces:
Runtime error
Runtime error
Commit
·
01bcb99
1
Parent(s):
b85f1ce
Add Dockerfile
Browse files- Dockerfile +10 -0
Dockerfile
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.11
|
2 |
+
|
3 |
+
WORKDIR /code
|
4 |
+
|
5 |
+
RUN git clone [email protected]:pvonderlind/CircadianRythmEU.git .
|
6 |
+
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
7 |
+
|
8 |
+
COPY . .
|
9 |
+
|
10 |
+
CMD ["panel", "serve", "/code/index.py", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "*.huggingface.co", "--allow-websocket-origin", "*.hf.space"]
|