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
FROM frolvlad/alpine-oraclejdk8:slim VOLUME /tmp ADD gs-spring-boot-docker-0.1.0.jar app.jar RUN bash -c 'touch /app.jar' ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]
The alpine oracle Docker image doesn't have bash Change the RUN command RUN sh -c 'touch /app.jar'
The text was updated successfully, but these errors were encountered:
Ouch, good catch . I should have spotted that.
Sorry, something went wrong.
This caught me out too, an update on the guide may help others
958e596
No branches or pull requests
FROM frolvlad/alpine-oraclejdk8:slim
VOLUME /tmp
ADD gs-spring-boot-docker-0.1.0.jar app.jar
RUN bash -c 'touch /app.jar'
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]
The alpine oracle Docker image doesn't have bash
Change the RUN command
RUN sh -c 'touch /app.jar'
The text was updated successfully, but these errors were encountered: