Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Gepetto Utils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gepetto
Gepetto Utils
Commits
a4cfaf31
Commit
a4cfaf31
authored
5 years ago
by
Guilhem Saurel
Browse files
Options
Downloads
Patches
Plain Diff
docker/pinocchio: python3 by default
parent
6d9fafb0
No related branches found
No related tags found
1 merge request
!4
Update robotpkg-test-rc.py for pinocchio v2.0.0 tests
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docker/pinocchio/Dockerfile
+8
-3
8 additions, 3 deletions
docker/pinocchio/Dockerfile
docker/pinocchio/README.md
+0
-5
0 additions, 5 deletions
docker/pinocchio/README.md
with
8 additions
and
8 deletions
docker/pinocchio/Dockerfile
+
8
−
3
View file @
a4cfaf31
...
...
@@ -3,6 +3,7 @@ FROM ubuntu:$UBUNTU
# Setup Robotpkg apt binary repository
ARG
UBUNTU=bionic
ENV
UBUNTU=$UBUNTU
RUN
apt-get update
-y
&&
apt-get
install
-y
\
build-essential
\
cmake
\
...
...
@@ -10,6 +11,8 @@ RUN apt-get update -y && apt-get install -y \
git
\
&&
echo
"deb [arch=amd64] http://robotpkg.openrobots.org/packages/debian/pub
$UBUNTU
robotpkg"
\
>>
/etc/apt/sources.list.d/robotpkg.list
\
&&
echo
"deb [arch=amd64] http://robotpkg.openrobots.org/wip/packages/debian/pub
$UBUNTU
robotpkg"
\
>>
/etc/apt/sources.list.d/robotpkg.list
\
&&
curl http://robotpkg.openrobots.org/packages/debian/robotpkg.key | apt-key add -
\
&&
rm
-rf
/var/lib/apt/lists/
*
...
...
@@ -22,6 +25,7 @@ ENV CMAKE_PREFIX_PATH=$ROBOTPKG_BASE:$CMAKE_PREFIX_PATH \
# get Pinocchio dependencies
ARG
PYTHON=python3
ENV
PYTHON=$PYTHON
RUN
apt-get update
-y
\
&&
apt-get
install
-y
\
$(
echo
$PYTHON
|
sed
's/2//'
)
\
...
...
@@ -44,7 +48,8 @@ RUN git clone --recursive --branch $BRANCH https://github.com/$NAMESPACE/pinocch
WORKDIR
/pinocchio/build
ARG
MAKE_JOBS=1
ENV
CTEST_PARALLEL_LEVEL=$MAKE_JOBS CTEST_OUTPUT_ON_FAILURE=true
RUN
cmake
-DPYTHON_EXECUTABLE
=
$(
which
$PYTHON
)
..
\
&&
make
-j
$MAKE_JOBS
CMD
make
test
&&
make
-j
$MAKE_JOBS
\
&&
make
test
\
&&
make
install
This diff is collapsed.
Click to expand it.
docker/pinocchio/README.md
+
0
−
5
View file @
a4cfaf31
...
...
@@ -8,7 +8,6 @@ If the buildfarm doesn't work in your case, you could use this.
docker build -t gepetto/utils:pinocchio-18.04 .
docker build -t gepetto/utils:pinocchio-16.04 --build-arg UBUNTU=xenial .
docker build -t gepetto/utils:pinocchio-14.04 --build-arg UBUNTU=trusty .
docker build -t gepetto/utils:pinocchio-18.04-py3 --build-arg PYTHON=python3 .
```
# Push images
...
...
@@ -17,7 +16,6 @@ docker build -t gepetto/utils:pinocchio-18.04-py3 --build-arg PYTHON=python3 .
docker push gepetto/utils:pinocchio-18.04
docker push gepetto/utils:pinocchio-16.04
docker push gepetto/utils:pinocchio-14.04
docker push gepetto/utils:pinocchio-18.04-py3
```
# Pull an image
...
...
@@ -26,7 +24,6 @@ docker push gepetto/utils:pinocchio-18.04-py3
docker pull gepetto/utils:pinocchio-18.04
docker pull gepetto/utils:pinocchio-16.04
docker pull gepetto/utils:pinocchio-14.04
docker pull gepetto/utils:pinocchio-18.04-py3
```
# Run test
...
...
@@ -35,7 +32,6 @@ docker pull gepetto/utils:pinocchio-18.04-py3
docker run --rm -it gepetto/utils:pinocchio-18.04
docker run --rm -it gepetto/utils:pinocchio-16.04
docker run --rm -it gepetto/utils:pinocchio-14.04
docker run --rm -it gepetto/utils:pinocchio-18.04-py3
```
# Enter in the image
...
...
@@ -44,5 +40,4 @@ docker run --rm -it gepetto/utils:pinocchio-18.04-py3
docker run --rm -it gepetto/utils:pinocchio-18.04 bash
docker run --rm -it gepetto/utils:pinocchio-16.04 bash
docker run --rm -it gepetto/utils:pinocchio-14.04 bash
docker run --rm -it gepetto/utils:pinocchio-18.04-py3 bash
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment