-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdockerfile
35 lines (26 loc) · 1.08 KB
/
dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
ARG python_version=3.9
ARG build_target=$python_version
ARG publish_target=$python_version
FROM python:$build_target as Builder
# Add arguments to container scope
ARG build_target
ARG package
ARG package_version
# Only add build tools for alpine image. The ubuntu based images have build tools already.
# This command fails with a warning on Ubuntu (sh) and succeeds without issue on alpine (bash).
RUN if [[ "$build_target" == *"alpine" ]] ; then apk add build-base ; fi
# Install packaer and build all dependencies.
RUN pip install $package==$package_version
# Build our actual container now.
FROM python:$publish_target
# Add args to container scope.
ARG python_version
ARG package
ARG maintainer=""
ARG TARGETPLATFORM=""
LABEL python=$version
LABEL package=$package
LABEL maintainer=$maintainer
LABEL org.opencontainers.image.description="python:$publish_target $package:$package_version $TARGETPLATFORM"
# Copy all of the python files built in the Builder container into this smaller container.
COPY --from=Builder /usr/local/lib/python$python_version /usr/local/lib/python$python_version