Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -8,8 +8,7 @@ ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH
|
|
8 |
|
9 |
# Initialize pyenv
|
10 |
RUN echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc
|
11 |
-
RUN echo 'export PATH="$
|
12 |
-
OT/bin:$PATH"' >> ~/.bashrc
|
13 |
RUN echo 'eval "$(pyenv init --path)"' >> ~/.bashrc
|
14 |
RUN echo 'eval "$(pyenv init -)"' >> ~/.bashrc
|
15 |
|
@@ -28,6 +27,7 @@ RUN ls
|
|
28 |
# RUN /bin/bash -c "source ~/.bashrc && make -C robot-server dev"
|
29 |
# RUN /bin/bash -c "source ~/.bashrc && make robot-server setup"
|
30 |
# Install yarn
|
|
|
31 |
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"
|
32 |
|
33 |
# Install nvm with Node.js and npm
|
|
|
8 |
|
9 |
# Initialize pyenv
|
10 |
RUN echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc
|
11 |
+
RUN echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc
|
|
|
12 |
RUN echo 'eval "$(pyenv init --path)"' >> ~/.bashrc
|
13 |
RUN echo 'eval "$(pyenv init -)"' >> ~/.bashrc
|
14 |
|
|
|
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 |
+
|
31 |
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"
|
32 |
|
33 |
# Install nvm with Node.js and npm
|