-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dockerfile
61 lines (44 loc) · 1.94 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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
ARG TARGETPLATFORM
# Only add build tools for alpine image. The ubuntu based images have build tools already.
# Only runs if `apk` is on the system.
RUN if which apk ; then apk add python3-dev libffi-dev libevent-dev build-base bash; fi
# Install rust on alpine if not using linux/arm/v7
RUN bash -c 'if which apk && [[ "$TARGETPLATFORM" != "linux/arm/v7" ]] ; then apk add cargo rust gcc musl-dev; fi'
# Install rust on alpine if not using linux/arm/v7
RUN bash -c 'if which apt-get && [[ "$TARGETPLATFORM" != "linux/arm/v7" ]] ; then curl https://sh.rustup.rs -sSf | bash -s -- -y; fi'
ENV PATH="/root/.cargo/bin:${PATH}"
# Watchfiles will not work on linux/arm/v7.
RUN bash -c 'if [[ "$TARGETPLATFORM" == "linux/arm/v7" ]] ; then pip install $package==$package_version ; fi'
RUN bash -c 'if [[ "$TARGETPLATFORM" != "linux/arm/v7" ]] ; then pip install $package==$package_version watchfiles>=0.15 ; fi'
# 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"
# Used for Celery Beat.
RUN mkdir /var/celery
# 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
# Entrypoint Script
COPY ./assets/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
# Example application so container "works" when run directly.
COPY ./assets/worker.py /app/worker.py
WORKDIR /app/
ENV PYTHONPATH=/app
CMD ["/entrypoint.sh"]