-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dockerfile
47 lines (35 loc) · 1.34 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
35
36
37
38
39
40
41
42
43
44
45
46
47
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 which apk ; then apk add python3-dev libffi-dev libevent-dev build-base ; fi
# Install package and build all dependencies.
RUN pip install inotify $package==$package_version
# Build our actual container now.
FROM python:$publish_target
# Add args to container scope.
ARG publish_target
ARG python_version
ARG package
ARG maintainer=""
ARG TARGETPLATFORM=""
LABEL python=$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
# Startup Script
COPY ./assets/start.sh /start.sh
RUN chmod +x /start.sh
# Example application so container "works" when run directly.
COPY ./assets/main.py /app/main.py
WORKDIR /app/
ENV PYTHONPATH=/app
CMD ["/start.sh"]