Nur*_*ulu 9 python django entry-point docker dockerfile
文件
FROM python:3.7.4-alpine
ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
ENV LANG C.UTF-8
MAINTAINER "mail@gmail.com"
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"]
Run Code Online (Sandbox Code Playgroud)
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 \
"$@"
Run Code Online (Sandbox Code Playgroud)
获取错误 standard_init_linux.go:211: exec user process 导致“没有这样的文件或目录”需要帮助。有人说要使用 dos2unix(我不知道如何使用它。)
Dav*_*aze 16
脚本开头的“shebang”行说明使用什么解释器来运行它。在您的情况下,您的脚本已指定#!/bin/bash,但基于 Alpine 的 Docker 映像通常不包含 GNU bash;相反,它们具有更小/bin/sh的功能,仅包含 POSIX shell 规范中的功能。
您的脚本未使用任何非标准 bash 扩展,因此您只需将脚本的开头更改为
#!/bin/sh
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5682 次 |
| 最近记录: |