File tree 4 files changed +6
-5
lines changed
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -24,28 +24,28 @@ jobs:
24
24
password : ${{ secrets.DOCKER_ACCESS_TOKEN }}
25
25
26
26
- name : Build and Push Gitpod Image
27
+ working-directory : Docker
27
28
uses : docker/build-push-action@v6
28
29
with :
29
30
platforms : linux/amd64
30
- context : Docker
31
31
push : true
32
32
file : Dockerfile.gitpod
33
33
tags : rustlluk/pycub:gitpod
34
34
35
35
- name : Build and Push VNC Image
36
+ working-directory : Docker
36
37
uses : docker/build-push-action@v6
37
38
with :
38
39
platforms : linux/amd64,linux/arm64
39
- context : Docker
40
40
push : true
41
41
file : Dockerfile.vnc
42
42
tags : rustlluk/pycub:vnc
43
43
44
44
- name : Build and Push Standard Image
45
+ working-directory : Docker
45
46
uses : docker/build-push-action@v6
46
47
with :
47
48
platforms : linux/amd64,linux/arm64
48
- context : Docker
49
49
push : true
50
50
file : Dockerfile
51
51
tags : rustlluk/pycub:latest
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ RUN echo "export PATH=/usr/local/bin:$PATH" >> /home/docker/.bashrc
57
57
58
58
# pybullet, robot_description, numpy, etc.
59
59
RUN python$PYTHON_VER -m pip install --user --upgrade pip && python$PYTHON_VER -m pip install pybullet "numpy<2" scipy cython matplotlib roboticstoolbox-python --ignore-installed --verbose --no-cache-dir
60
+ RUN cd /home/docker && git clone https://github.com/rustlluk/pyCub.git && cd pyCub && git checkout dev && python$PYTHON_VER setup.py install --user
60
61
61
62
# Delete thingies from aptitude
62
63
RUN rm -Rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ RUN echo "export PORT=5901" >> /home/gitpod/.bashrc
92
92
RUN python$PYTHON_VER -m pip install --user --upgrade pip && python$PYTHON_VER -m pip install "numpy<2" cython open3d pybullet roboticstoolbox-python --ignore-installed
93
93
94
94
USER gitpod
95
- RUN cd /home/gitpod && git clone https://github.com/rustlluk/pyCub.git && cd pyCub && python$PYTHON_VER setup.py install --user
95
+ RUN cd /home/gitpod && git clone https://github.com/rustlluk/pyCub.git && cd pyCub && git checkout dev && python$PYTHON_VER setup.py install --user
96
96
97
97
RUN sudo ln -sf /usr/bin/python$PYTHON_VER /usr/local/bin/python && sudo ln -sf /usr/bin/python$PYTHON_VER /usr/local/bin/python3
98
98
RUN echo "export PATH=/usr/local/bin:$PATH" >> /home/gitpod/.bashrc
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ RUN echo "export PORT=5999" >> /home/docker/.bashrc
99
99
RUN python$PYTHON_VER -m pip install --user --upgrade pip && python$PYTHON_VER -m pip install "numpy<2" cython open3d pybullet roboticstoolbox-python --ignore-installed
100
100
101
101
USER docker
102
- RUN cd /home/docker && git clone https://github.com/rustlluk/pyCub.git && cd pyCub && python$PYTHON_VER setup.py install --user
102
+ RUN cd /home/docker && git clone https://github.com/rustlluk/pyCub.git && cd pyCub && git checkout dev && python$PYTHON_VER setup.py install --user
103
103
104
104
RUN sudo ln -sf /usr/bin/python$PYTHON_VER /usr/local/bin/python && sudo ln -sf /usr/bin/python$PYTHON_VER /usr/local/bin/python3
105
105
RUN echo "export PATH=/usr/local/bin:$PATH" >> /home/docker/.bashrc
You can’t perform that action at this time.
0 commit comments