MartinT commited on
Commit
00c0866
·
1 Parent(s): cc07bfc

Create Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]