MartinT commited on
Commit
9c98f32
1 Parent(s): 9f1d32d

chore: Use the latest Wave university.

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -10,9 +10,10 @@ ENV PATH=/home/user/.local/bin:$PATH
10
 
11
  WORKDIR $HOME/app
12
 
13
- RUN pip install h2o-wave h2o-wave-university
 
14
 
15
  ENV H2O_WAVE_LISTEN=":7860"
16
  ENV H2O_WAVE_ADDRESS="http://127.0.0.1:7860"
17
 
18
- CMD ["wave-university"]
 
10
 
11
  WORKDIR $HOME/app
12
 
13
+ RUN python -m venv venv
14
+ RUN ./venv/bin/pip install h2o-wave-university
15
 
16
  ENV H2O_WAVE_LISTEN=":7860"
17
  ENV H2O_WAVE_ADDRESS="http://127.0.0.1:7860"
18
 
19
+ CMD ["./venv/bin/wave-university"]