-
Notifications
You must be signed in to change notification settings - Fork 2.2k
standard_init_linux.go:175: exec user process caused "exec format error" #228
New issue
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
Comments
That error usually means you're trying to run this |
For googlers check the Sha-Bang on your Entrypoint and CMD scripts. #!/bin/bash |
Thanks @tianon I'm seeing this on a raspberry pi |
Hello i am getting the same error,.. FROM openjdk:8-jre MAINTAINER krish<vxxxxxxxx.com> Define environment variables ENV ARTIFACTORY_HOME=/opt/artifactory Create artifactory group and user RUN groupadd -g 1000 artifactory Install artifactory RUN wget "https://api.bintray.com/content/jfrog/artifactory/jfrog-artifactory-oss-${ARTIFACTORY_VERSION}.zip;bt_package=jfrog-artifactory-oss-zip" && Define mountable directories VOLUME $ARTIFACTORY_HOME/data Add initialization script ADD entrypoint.sh /opt/artifactory/bin/entrypoint.sh Modify script permissions RUN chmod 755 /opt/artifactory/bin/entrypoint.sh Change directories ownership to artifactory user and group RUN chown -R artifactory:artifactory $ARTIFACTORY_HOME Run the container as artifactory user USER artifactory Define default command ENTRYPOINT ["/opt/artifactory/bin/entrypoint.sh"] Expose port EXPOSE 8081 |
@dmowcomber how you cleared this error can u help me bro |
@vamsi248 as noted above, check the shebang on your I'm going to close this since it's an issue with usage/architecture, not the image. |
docker version
OS: ubuntu 16.04
Run the mysql dockerfile get this error
any idea?
The text was updated successfully, but these errors were encountered: