123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- FROM python:3.9-slim
- # Install packages needed to run your application (not build deps):
- # We need to recreate the /usr/share/man/man{1..8} directories first because
- # they were clobbered by a parent image.
- RUN set -ex \
- && RUN_DEPS=" \
- libexpat1 \
- libjpeg62-turbo \
- libpcre3 \
- libpq5 \
- mime-support \
- postgresql-client \
- procps \
- zlib1g \
- " \
- && seq 1 8 | xargs -I{} mkdir -p /usr/share/man/man{} \
- && apt-get update && apt-get install -y --no-install-recommends $RUN_DEPS \
- && rm -rf /var/lib/apt/lists/*
- ADD requirements/ /requirements/
- RUN set -ex \
- && BUILD_DEPS=" \
- build-essential \
- git \
- libexpat1-dev \
- libjpeg62-turbo-dev \
- libpcre3-dev \
- libpq-dev \
- zlib1g-dev \
- " \
- && apt-get update && apt-get install -y --no-install-recommends $BUILD_DEPS \
- && python3.9 -m venv /venv \
- && /venv/bin/pip install -U pip \
- && /venv/bin/pip install --no-cache-dir -r /requirements/production.txt \
- && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $BUILD_DEPS \
- && rm -rf /var/lib/apt/lists/*
- RUN mkdir /code/
- WORKDIR /code/
- ADD . /code/
- EXPOSE 8000
- # Add custom environment variables needed by Django or your settings file here:
- ENV DJANGO_SETTINGS_MODULE=bakerydemo.settings.production DJANGO_DEBUG=off
- # Tell uWSGI where to find your wsgi file:
- ENV UWSGI_WSGI_FILE=bakerydemo/wsgi.py
- # Base uWSGI configuration (you shouldn't need to change these):
- ENV UWSGI_VIRTUALENV=/venv UWSGI_HTTP=:8000 UWSGI_MASTER=1 UWSGI_HTTP_AUTO_CHUNKED=1 UWSGI_HTTP_KEEPALIVE=1 UWSGI_UID=1000 UWSGI_GID=2000 UWSGI_LAZY_APPS=1 UWSGI_WSGI_ENV_BEHAVIOR=holy
- # Number of uWSGI workers and threads per worker (customize as needed):
- ENV UWSGI_WORKERS=2 UWSGI_THREADS=4
- # uWSGI uploaded media file serving configuration:
- ENV UWSGI_STATIC_MAP="/media/=/code/bakerydemo/media/"
- # Call collectstatic with dummy environment variables:
- RUN DATABASE_URL=postgres://none REDIS_URL=none /venv/bin/python manage.py collectstatic --noinput
- # make sure static files are writable by uWSGI process
- RUN mkdir -p /code/bakerydemo/media/images && chown -R 1000:2000 /code/bakerydemo/media
- # mark the destination for images as a volume
- VOLUME ["/code/bakerydemo/media/images/"]
- # start uWSGI, using a wrapper script to allow us to easily add more commands to container startup:
- ENTRYPOINT ["/code/docker-entrypoint.sh"]
- # Start uWSGI
- CMD ["/venv/bin/uwsgi", "--show-config"]
|