Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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
|
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
|