Skip to content

Commit

Permalink
Add java and pigz to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Sep 28, 2023
1 parent cb15aa7 commit 4d6ef97
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,13 @@ RUN if [ -z "$BUILD_BASE_IMAGE" ]; then echo "Missing BUILD_BASE_IMAGE --build-a
# Export project binaries to the final build stage
COPY --from=builder "$staging_dir" "$install_dir"

# Install runtime dependencies
RUN apt-get update \
&& apt-get install -y \
openjdk-19-jre-headless \
pigz \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /data
ENTRYPOINT ["/usr/local/bin/hictk"]

Expand Down

0 comments on commit 4d6ef97

Please sign in to comment.