We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
will there be an official docker image on docker hub?
The text was updated successfully, but these errors were encountered:
Maybe in the future, though this is not not a short term goal at this point. We do welcome contributions though.
Sorry, something went wrong.
Thanks for the reply.
I write a simple Dockerfile, someone might need it.
Dockerfile
### phase 1 FROM openjdk:8-jdk ARG MVND_VERSION=0.7.1 ARG DOWNLOAD_URL=https://github.com/apache/maven-mvnd/releases/download/${MVND_VERSION}/mvnd-${MVND_VERSION}-linux-amd64.zip RUN mkdir -p /tmp/mvnd \ && curl -fsSL -o mvnd.zip ${DOWNLOAD_URL} \ && unzip mvnd.zip -d /tmp/mvnd ### phase 2 FROM openjdk:8-jdk COPY --from=0 /tmp/mvnd /usr/local/ ENV MVND_VERSION=0.7.1 ENV MVND_HOME=/usr/local/mvnd-${MVND_VERSION}-linux-amd64 ENV PATH=.:$MVND_HOME/bin:$PATH CMD ["mvnd"]
No branches or pull requests
will there be an official docker image on docker hub?
The text was updated successfully, but these errors were encountered: