This image was created to be the base image for Django applications.
2.1K
This image was created to be the base image for Django applications.
FROM python:3.11
# setup environment
RUN apt-get update \
&& apt-get install -y libxml2-dev libpng-dev libwebp-dev libjpeg-dev libtiff-dev \
libgif-dev lsb-release inotify-tools nano rsync sudo zlib1g-dev \
&& wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc > /etc/apt/trusted.gpg.d/postgresql-official.asc \
&& echo "deb [arch=amd64] http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -sc)-pgdg main" >> /etc/apt/sources.list \
&& apt-get update \
&& apt-get install -y postgresql-client-15 \
&& apt-get clean \
&& pip3 install --no-cache-dir uwsgi
Content type
Image
Digest
sha256:4941a52d9…
Size
393.5 MB
Last updated
almost 2 years ago
docker pull bugoman/python-uwsgi