29 lines
1.4 KiB
Docker
29 lines
1.4 KiB
Docker
FROM docker.io/bitnami/minideb:buster
|
|
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
|
|
|
ENV OS_ARCH="amd64" \
|
|
OS_FLAVOUR="debian-10" \
|
|
OS_NAME="linux"
|
|
|
|
COPY prebuildfs /
|
|
# Install required system packages and dependencies
|
|
RUN install_packages build-essential ca-certificates curl git gzip libbz2-1.0 libc6 libffi6 liblzma5 libncursesw6 libreadline7 libsqlite3-0 libsqlite3-dev libssl-dev libssl1.1 libtinfo6 pkg-config procps tar unzip wget zlib1g
|
|
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/python-3.7.13-3-linux-amd64-debian-10.tar.gz && \
|
|
echo "3c762deccd57447e5a1f0ae9fb16a664b59739506601dc272d8735f342c6c8cf /tmp/bitnami/pkg/cache/python-3.7.13-3-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
|
|
tar -zxf /tmp/bitnami/pkg/cache/python-3.7.13-3-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
|
rm -rf /tmp/bitnami/pkg/cache/python-3.7.13-3-linux-amd64-debian-10.tar.gz
|
|
RUN apt-get update && apt-get upgrade -y && \
|
|
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
|
RUN sed -i 's/^PASS_MAX_DAYS.*/PASS_MAX_DAYS 90/' /etc/login.defs && \
|
|
sed -i 's/^PASS_MIN_DAYS.*/PASS_MIN_DAYS 0/' /etc/login.defs && \
|
|
sed -i 's/sha512/sha512 minlen=8/' /etc/pam.d/common-password
|
|
|
|
ENV APP_VERSION="3.7.13" \
|
|
BITNAMI_APP_NAME="python" \
|
|
PATH="/opt/bitnami/python/bin:$PATH"
|
|
|
|
EXPOSE 8000
|
|
|
|
WORKDIR /app
|
|
CMD [ "python" ]
|