Forked from praveenweb/6.multi-stage-production-python.Dockerfile
Created
July 23, 2020 07:31
-
-
Save alterEgo123/4e04f8718093b8e43379b12d6a6c3596 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# ---- Base python ---- | |
FROM python:3.6 AS base | |
# Create app directory | |
WORKDIR /app | |
# ---- Dependencies ---- | |
FROM base AS dependencies | |
COPY gunicorn_app/requirements.txt ./ | |
# install app dependencies | |
RUN pip install -r requirements.txt | |
# ---- Copy Files/Build ---- | |
FROM dependencies AS build | |
WORKDIR /app | |
COPY . /app | |
# Build / Compile if required | |
# --- Release with Alpine ---- | |
FROM python:3.6-alpine3.7 AS release | |
# Create app directory | |
WORKDIR /app | |
COPY --from=dependencies /app/requirements.txt ./ | |
COPY --from=dependencies /root/.cache /root/.cache | |
# Install app dependencies | |
RUN pip install -r requirements.txt | |
COPY --from=build /app/ ./ | |
CMD ["gunicorn", "--config", "./gunicorn_app/conf/gunicorn_config.py", "gunicorn_app:app"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment