Skip to content

Commit

Permalink
add mc
Browse files Browse the repository at this point in the history
  • Loading branch information
ludovicm67 committed May 10, 2024
1 parent adabab1 commit 0972b27
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/funny-cheetahs-pay.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"docker-node-java-jena": minor
---

Add `mc` (Minio client) CLI
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,14 @@ RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg --dear
&& apt-get install -y nodejs \
&& apt-get clean

# Install Minio client
COPY --from=minio/mc:latest /usr/bin/mc /usr/bin/mc

# install barnard59 globally
RUN npm install -g barnard59

# install Apache Jena tools
RUN curl -fsSL "https://dlcdn.apache.org/jena/binaries/apache-jena-${JENA_VERSION}.tar.gz" | tar zxf - \
RUN curl -fsSL "https://archive.apache.org/dist/jena/binaries/apache-jena-${JENA_VERSION}.tar.gz" | tar zxf - \
&& mv apache-jena* /jena \
&& rm -f jena.tar.gz* \
&& cd /jena && rm -rf *javadoc* *src* bat
Expand Down

0 comments on commit 0972b27

Please sign in to comment.