Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- Dockerfile +11 -0
Dockerfile
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
2 |
+
# you will also find guides on how best to write your Dockerfile
|
3 |
+
|
4 |
+
FROM python:3.9
|
5 |
+
|
6 |
+
RUN pip install h2o-wave h2o-wave-university
|
7 |
+
|
8 |
+
ENV H2O_WAVE_LISTEN=":7860"
|
9 |
+
ENV H2O_WAVE_ADDRESS="http://127.0.0.1:7860"
|
10 |
+
|
11 |
+
CMD ["wave-university"]
|