web-dev-qa-db-ja.com

standard_init_linux.go:211:execユーザープロセスが原因で「そのようなファイルまたはディレクトリはありません」?

Dockerfile

FROM python:3.7.4-Alpine

ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
ENV LANG C.UTF-8
MAINTAINER Nurbek Batyrzhan "[email protected]"


RUN apk update && apk add postgresql-dev gcc musl-dev
RUN apk --update add build-base jpeg-dev zlib-dev
RUN pip install --upgrade setuptools pip

RUN mkdir /code
WORKDIR /code

COPY requirements.txt /code/
RUN pip install -r requirements.txt
COPY . /code/

#CMD ["gunicorn", "--log-level=DEBUG", "--timeout 90", "--bind", "0.0.0.0:8000", "express_proj.wsgi:application"]
ENTRYPOINT ["./docker-entrypoint.sh"]

docker-entrypoint.sh

#!/bin/bash

# Prepare log files and start outputting logs to stdout
touch /code/gunicorn.log
touch /code/access.log
tail -n 0 -f /code/*.log &

# Start Gunicorn processes
echo Starting Gunicorn.
exec gunicorn express_proj.wsgi:application \
    --name express \
    --bind 0.0.0.0:8000 \
    --log-level=info \
    --log-file=/code/gunicorn.log \
    --access-logfile=/code/access.log \
    --workers 2 \
    --timeout 90 \
    "$@"

エラーが発生しましたstandard_init_linux.go:211:exec user process原因 "no such file or directory"ヘルプが必要です。dos2unixを使用するように言っている人もいます(私はhoeを使用する方法がわかりません。)

これは、スクリプトの行末が間違っている場合にも発生する可能性があります。つまり、\r\nではなく\rです。

これは、スクリプトにfile path/to/script.shの行末があるかどうかを示すCR-LFコマンドを使用して確認できます。

1回限りのスクリプトの場合、dos2unixを使用して\r\nから\nに変更できます。

Gitリポジトリの場合、autocrlfオプションをinputに設定すると機能します

行末設定の変更方法

1
tejas