Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve docker build speed by downloading less #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM ros:kinetic-ros-core

RUN apt-get update && apt-get install -y default-jdk-headless clang-6.0 maven python3-pip python3-yaml ros-kinetic-marti-common-msgs python-catkin-tools
RUN apt-get update && apt-get --no-install-recommends install -y openjdk-8-jdk-headless clang-6.0 llvm-6.0-dev maven python3-pip python3-yaml ros-kinetic-marti-common-msgs python-catkin-tools
RUN pip3 install pytest
WORKDIR /app
RUN git clone -b darpa https://github.com/runtimeverification/rv-monitor
RUN git clone https://github.com/Formal-Systems-Laboratory/ROSRV
RUN git clone --depth 1 -b darpa https://github.com/runtimeverification/rv-monitor
RUN git clone --depth 1 https://github.com/Formal-Systems-Laboratory/ROSRV
RUN cd rv-monitor && mvn install -DskipTests -pl '!installer'
ENV RVMONITOR="/app/rv-monitor"
RUN cd ROSRV/src/rosmop && mvn package -DskipTests
Expand Down