Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -15,6 +15,7 @@ RUN echo 'eval "$(pyenv init -)"' >> ~/.bashrc
|
|
15 |
# Set the working directory
|
16 |
WORKDIR /root/opentrons
|
17 |
# EXPOSE 31950
|
|
|
18 |
|
19 |
# Run chat UI
|
20 |
# RUN /bin/bash -c "source ~/.bashrc && pyenv install 3.8.5"
|
@@ -24,6 +25,11 @@ WORKDIR /root/opentrons
|
|
24 |
|
25 |
# Run make command in robot-server directory
|
26 |
# RUN /bin/bash -c "source ~/.bashrc && make -C robot-server dev"
|
|
|
|
|
|
|
|
|
|
|
27 |
RUN /bin/bash -c "source ~/.bashrc && make robot-server setup"
|
28 |
|
29 |
# Set up a new user named "user" with user ID 1000
|
|
|
15 |
# Set the working directory
|
16 |
WORKDIR /root/opentrons
|
17 |
# EXPOSE 31950
|
18 |
+
RUN ls
|
19 |
|
20 |
# Run chat UI
|
21 |
# RUN /bin/bash -c "source ~/.bashrc && pyenv install 3.8.5"
|
|
|
25 |
|
26 |
# Run make command in robot-server directory
|
27 |
# RUN /bin/bash -c "source ~/.bashrc && make -C robot-server dev"
|
28 |
+
# RUN /bin/bash -c "source ~/.bashrc && make robot-server setup"
|
29 |
+
# Install yarn
|
30 |
+
RUN /bin/bash -c "source ~/.bashrc && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && echo 'deb https://dl.yarnpkg.com/debian/ stable main' | tee /etc/apt/sources.list.d/yarn.list && apt-get update && apt-get install -y yarn"
|
31 |
+
|
32 |
+
# Run make command in robot-server directory
|
33 |
RUN /bin/bash -c "source ~/.bashrc && make robot-server setup"
|
34 |
|
35 |
# Set up a new user named "user" with user ID 1000
|