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

feat: Initial dockerfile.

Browse files
Files changed (1) hide show
  1. dockerfile +13 -0
dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ WORKDIR /app
7
+
8
+ RUN pip install h2o-wave h2o-wave-university
9
+
10
+ ENV H2O_WAVE_LISTEN=":7860"
11
+ ENV H2O_WAVE_ADDRESS="http://127.0.0.1:7860"
12
+
13
+ CMD ["wave-university"]