Skip to content

Commit

Permalink
INFRA-541 Add R deps for Cuppa
Browse files Browse the repository at this point in the history
  • Loading branch information
Ned Leitch committed Sep 10, 2024
1 parent 85aae64 commit c4b1d26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cuppa/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN curl https://europe-west4-apt.pkg.dev/doc/repo-signing-key.gpg | apt-key add
RUN echo 'deb http://packages.cloud.google.com/apt apt-transport-artifact-registry-stable main' | tee -a /etc/apt/sources.list.d/artifact-registry.list
RUN apt update && apt install -y apt-transport-artifact-registry
RUN echo 'deb ar+https://europe-west4-apt.pkg.dev/projects/hmf-build hmf-apt main' | tee -a /etc/apt/sources.list.d/artifact-registry.list
RUN apt update && apt install -y hmf-r-base
RUN apt update && apt install -y hmf-r-base hmf-r-ggplot2 hmf-r-ggh4x hmf-r-stringr hmf-r-patchwork

ADD target/cuppa-$VERSION-jar-with-dependencies.jar /usr/share/hartwig/cuppa.jar
RUN cd /opt/tools && jar xvf /usr/share/hartwig/cuppa.jar pycuppa
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ public ShellCommand run()
.start();

mComplete = process.waitFor(mTimeout, mTimeoutUnit);
CUP_LOGGER.info("Command [{}] complete", this);
mStdout = captureStdout(process, mLogLevel);
mExitCode = process.exitValue();
}
Expand Down

0 comments on commit c4b1d26

Please sign in to comment.