|
| 1 | +FROM ubuntu:bionic |
| 2 | + |
| 3 | +RUN apt-get update \ |
| 4 | + && apt-get install -y \ |
| 5 | + sudo \ |
| 6 | + && apt-get clean |
| 7 | + |
| 8 | +COPY docker/scripts/install_common_deps.sh scripts/install_common_deps.sh |
| 9 | +RUN scripts/install_common_deps.sh |
| 10 | + |
| 11 | +# This is not strictly necessary, but makes things faster down the line. |
| 12 | +COPY docker/scripts/install_ign_deps.sh scripts/install_ign_deps.sh |
| 13 | +RUN scripts/install_ign_deps.sh |
| 14 | + |
| 15 | +COPY docker/scripts/enable_gcc8.sh scripts/enable_gcc8.sh |
| 16 | +RUN scripts/enable_gcc8.sh |
| 17 | + |
| 18 | +COPY docker/scripts/enable_ign_stable.sh scripts/enable_ign_stable.sh |
| 19 | +RUN scripts/enable_ign_stable.sh |
| 20 | + |
| 21 | +COPY docker/scripts/enable_ign_prerelease.sh scripts/enable_ign_prerelease.sh |
| 22 | +RUN scripts/enable_ign_prerelease.sh |
| 23 | + |
| 24 | +COPY docker/scripts/enable_ign_nightly.sh scripts/enable_ign_nightly.sh |
| 25 | +RUN scripts/enable_ign_nightly.sh |
| 26 | + |
| 27 | +RUN apt-get update \ |
| 28 | + && apt-get install -y \ |
| 29 | + libignition-cmake2-dev \ |
| 30 | + libignition-common3-dev \ |
| 31 | + libignition-math6-eigen3-dev \ |
| 32 | + libignition-plugin-dev \ |
| 33 | + libignition-physics-dev \ |
| 34 | + libignition-rendering-dev \ |
| 35 | + libignition-tools-dev \ |
| 36 | + libignition-transport6-dev \ |
| 37 | + libignition-gui-dev \ |
| 38 | + libignition-msgs3-dev \ |
| 39 | + libignition-sensors-dev \ |
| 40 | + libsdformat8-dev |
| 41 | + |
| 42 | +COPY . ign-gazebo |
| 43 | +RUN cd ign-gazebo \ |
| 44 | + && ./docker/scripts/build_ign_gazebo.sh |
| 45 | + |
0 commit comments