【发布时间】:2020-07-03 12:35:03
【问题描述】:
我在尝试在新的 Docker 容器上运行我的 django 项目时遇到了问题。 这是我第一次使用 Docker,我似乎找不到在其上运行 django 项目的好方法。尝试了多个教程后,我总是收到有关未安装 psycopg2 的错误。
requirements.txt:
-i https://pypi.org/simple
asgiref==3.2.7
django-cors-headers==3.3.0
django==3.0.7
djangorestframework==3.11.0
gunicorn==20.0.4
psycopg2-binary==2.8.5
pytz==2020.1
sqlparse==0.3.1
Dockerfile:
# pull official base image
FROM python:3.8.3-alpine
# set work directory
WORKDIR /usr/src/app
# set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
# install dependencies
RUN pip install --upgrade pip
COPY ./requirements.txt .
RUN pip install -r requirements.txt
# copy project
COPY . .
# set project environment variables
# grab these via Python's os.environ
# these are 100% optional here
ENV PORT=8000
ENV SECRET_KEY_TWITTER = "***"
在运行 docker-compose build 时,我收到以下错误:
Error: pg_config executable not found.
pg_config is required to build psycopg2 from source. Please add the directory
containing pg_config to the $PATH or specify the full executable path with the
option:
python setup.py build_ext --pg-config /path/to/pg_config build ...
or with the pg_config option in 'setup.cfg'.
If you prefer to avoid building psycopg2 from source, please install the PyPI
'psycopg2-binary' package instead.
我很乐意回答任何可能导致解决方案的问题。 另外,也许有人可以向我推荐一个关于 dockerizing django 应用程序的好教程?
【问题讨论】:
-
我认为您需要在 pip 安装软件包之前安装 PostgreSQL 客户端。编辑:我在使用 Py3.8 时实际上遇到了同样的问题,我恢复到 Py3.7 并安装它没有任何问题。
标签: python django docker psycopg2