Created
May 19, 2019 18:35
-
-
Save eduzen/84e0a450121973b424aa7bad811efd50 to your computer and use it in GitHub Desktop.
Dockerfile for django/python with multistage builds based on alpine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.7-alpine as base | |
ENV PYTHONDONTWRITEBYTECODE 1 | |
COPY requirements.txt requirements_dev.txt ./ | |
RUN apk add --update --no-cache --virtual .build-deps \ | |
build-base \ | |
postgresql-dev \ | |
libffi-dev \ | |
python3-dev \ | |
libffi-dev \ | |
jpeg-dev \ | |
zlib-dev \ | |
musl-dev \ | |
libpq \ | |
&& pip install --no-cache-dir -r requirements_dev.txt \ | |
&& find /usr/local \ | |
\( -type d -a -name test -o -name tests \) \ | |
-o \( -type f -a -name '*.pyc' -o -name '*.pyo' \) \ | |
-exec rm -rf '{}' + | |
# Now multistage builds | |
FROM python:3.7-alpine | |
RUN apk add --update --no-cache libpq libjpeg-turbo | |
COPY --from=base /usr/local/lib/python3.7/site-packages/ /usr/local/lib/python3.7/site-packages/ | |
COPY --from=base /usr/local/bin/ /usr/local/bin/ | |
WORKDIR /code | |
ENV PYTHONUNBUFFERED 1 | |
ENV PYTHONDONTWRITEBYTECODE 1 | |
ENV PYTHONPATH /code:$PYTHONPATH | |
EXPOSE 8080 | |
COPY . /code/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment