Home  >  Q&A  >  body text

dockerfile - docker build image process error

The error is reported as follows:
container_linux.go:247: starting container process caused "exec: "/bin/sh": stat /bin/sh: no such file or directory"

Dockerfile content is as follows:

FROM tiangolo/uwsgi-nginx:latest

MAINTAINER Sebastian Ramirez <tiangolo@gmail.com>

# Add app configuration to Nginx
COPY nginx.conf /etc/nginx/conf.d/

# install redis and start
COPY redis-install.sh /tmp/
RUN chmod +x /tmp/redis-install.sh
RUN /bin/sh /tmp/redis-install.sh

COPY startserver.sh /tmp/
RUN chmod +x /tmp/startserver.sh


# install mongodb
# Create the MongoDB data directory
RUN mkdir -p /data/db
# Import MongoDB public GPG key AND create a MongoDB list file
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
RUN echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | tee /etc/apt/sources.list.d/10gen.list
# Update apt-get sources AND install MongoDB
RUN apt-get update
RUN apt-get install -y -q mongodb-org ; echo 'after'

COPY requirement.txt /tmp/
RUN pip install -r /tmp/requirement.txt


ENTRYPOINT ["/bin/bash"]

Found when executing docker build -t debug .
I don’t know what went wrong. I hope you can help me find it

PHP中文网PHP中文网2685 days ago1619

reply all(2)I'll reply

  • 某草草

    某草草2017-05-16 13:19:45

    Can you post the complete error message? The error message you reported was changed to /bin/bash when docker run this container

    reply
    0
  • 怪我咯

    怪我咯2017-05-16 13:19:45

    RUN /bin/sh /tmp/redis-install.sh/bin/sh is called in this command, but this file should not be in your base image. It is recommended to check the base image or replace the base image

    reply
    0
  • Cancelreply