Merge pull request #46 from StuffNoOneCaresAbout/pr-docker-multistage

Docker multistage
This commit is contained in:
PLUJA 2020-09-11 15:37:09 +02:00 committed by GitHub
commit d3fd2d7238
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,27 @@
FROM python:3-alpine
FROM python:3-alpine AS base
# Image to Build Dependencies
FROM base AS builder
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN apk --no-cache add gcc musl-dev libffi-dev openssl-dev libxml2-dev libxslt-dev file llvm-dev make g++ \
&& pip install --no-cache-dir wheel cryptography gunicorn pymysql \
&& pip install --no-cache-dir -r requirements.txt \
&& apk del gcc musl-dev libffi-dev openssl-dev file llvm-dev make g++
# Build Dependencies
RUN apk --no-cache add gcc musl-dev libffi-dev openssl-dev libxml2-dev libxslt-dev file llvm-dev make g++
# Python Dependencies
RUN pip install --no-cache-dir --prefix=/install wheel cryptography gunicorn pymysql
RUN pip install --no-cache-dir --prefix=/install -r requirements.txt
# Runtime Environment Image
FROM base
WORKDIR /usr/src/app
# Runtime Dependencies
RUN apk --no-cache add libxml2 libxslt
COPY --from=builder /install /usr/local
COPY . .