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
Hi everybody, I have a problem to install advance netconf explorer on debian GNU/Linux rodete, can you help me please?
The text was updated successfully, but these errors were encountered:
Solved by the below edit to the Dockerfile
FROM debian:buster-slim LABEL maintainer="Steven Barth stbarth@cisco.com"
COPY anc /src/anc/ COPY explorer /src/explorer/ COPY grpc /src/grpc/ COPY pom.xml /src/
RUN mkdir -p /usr/share/man/man1 && apt update && apt -y --no-install-recommends install openjdk-11-jdk jetty9 maven
ENV JAVA_HOME=/usr/lib/jvm/java-11-openjdk-arm64 ENV PATH="${JAVA_HOME}/bin:${PATH}"
WORKDIR /src
RUN echo "JAVA_HOME is set to $JAVA_HOME" && java -version && mvn -v && find /usr/lib/jvm -name "java*"
RUN mvn clean package javadoc:javadoc
RUN cp /src/explorer/target/*.war /var/lib/jetty9/webapps/ROOT.war && cp -a /src/anc/target/site/apidocs /var/lib/jetty9/webapps/
RUN mkdir -p /usr/share/yangcache && chmod -R 755 /usr/share/yangcache /var/lib/jetty9/webapps/
RUN rm -rf /var/lib/jetty9/webapps/root /src /root/.m2 && apt remove -y maven && apt -y autoremove && apt clean
WORKDIR / EXPOSE 8080 CMD ["/usr/share/jetty9/bin/jetty.sh", "run"]
Sorry, something went wrong.
No branches or pull requests
Hi everybody,
I have a problem to install advance netconf explorer on debian GNU/Linux rodete, can you help me please?
The text was updated successfully, but these errors were encountered: