Skip to content

Commit

Permalink
Remove build-essential again [skip ci]
Browse files Browse the repository at this point in the history
Since the psycopg2 fix went in, maybe we don't need it.
psycopg/psycopg2#1360 (comment)
  • Loading branch information
rfay committed Apr 5, 2023
1 parent b9914ca commit 06e4318
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/ddev/cmd/ssh.go
Expand Up @@ -30,7 +30,7 @@ ddev ssh -d /var/www/html`,
}
app := projects[0]
instrumentationApp = app

app.DockerEnv()

// Use bash for our containers, sh for 3rd-party containers
Expand Down
1 change: 0 additions & 1 deletion containers/ddev-webserver/Dockerfile
Expand Up @@ -61,7 +61,6 @@ SHELL ["/bin/bash", "-c"]
RUN DEBIAN_FRONTEND=noninteractive apt-get -qq install -o Dpkg::Options::="--force-confold" --no-install-recommends --no-install-suggests -y \
blackfire \
blackfire-php \
build-essential \
fontconfig \
gettext \
git \
Expand Down
Expand Up @@ -17,7 +17,7 @@ function ddev_python_setup {
if [ "${DDEV_WEBSERVER_TYPE}" = "nginx-gunicorn" ]; then
python -m venv /var/www/html/.ddev/.venv
source /var/www/html/.ddev/.venv/bin/activate
pip install wheel gunicorn psycopg2
pip install wheel django gunicorn psycopg2
if [ -f /var/www/html/requirements.txt ]; then
pip install -r /var/www/html/requirements.txt
fi
Expand Down

0 comments on commit 06e4318

Please sign in to comment.