baxin commited on
Commit
cf03526
·
1 Parent(s): cd9f23a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -15,8 +15,9 @@ WORKDIR /app/opentrons
15
  # Install dependencies and setup
16
  RUN make setup-py
17
 
18
- # Run the server
19
- RUN make -C robot-server dev
20
-
21
  RUN pip install gradio requests
22
  RUN python app.py
 
 
 
 
15
  # Install dependencies and setup
16
  RUN make setup-py
17
 
18
+ # Run gradio ui
 
 
19
  RUN pip install gradio requests
20
  RUN python app.py
21
+
22
+ # Run the server
23
+ RUN make -C robot-server dev