68 lines
3.8 KiB
Docker
68 lines
3.8 KiB
Docker
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
FROM docker.io/bitnami/minideb:bookworm
|
|
|
|
ARG DOWNLOADS_URL="downloads.bitnami.com/files/stacksmith"
|
|
ARG TARGETARCH
|
|
|
|
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
|
|
org.opencontainers.image.created="2025-10-01T12:52:20Z" \
|
|
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
|
|
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/odoo/README.md" \
|
|
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/odoo" \
|
|
org.opencontainers.image.title="odoo" \
|
|
org.opencontainers.image.vendor="Broadcom, Inc." \
|
|
org.opencontainers.image.version="19.0.20251001"
|
|
|
|
ENV OS_ARCH="${TARGETARCH:-amd64}" \
|
|
OS_FLAVOUR="debian-12" \
|
|
OS_NAME="linux"
|
|
|
|
COPY prebuildfs /
|
|
SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"]
|
|
# Install required system packages and dependencies
|
|
RUN install_packages acl ca-certificates curl fontconfig libbsd0 libbz2-1.0 libc6 libcap2-bin libcom-err2 libcrypt1 libedit2 libffi8 libfreetype6 libgcc-s1 libgmp10 libgnutls30 libgssapi-krb5-2 libhogweed6 libicu72 libidn2-0 libjpeg62-turbo libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.5-0 liblz4-1 liblzma5 libmd0 libncursesw6 libnettle8 libnsl2 libp11-kit0 libpng16-16 libpq5 libreadline8 libsasl2-2 libsqlite3-0 libssl3 libstdc++6 libtasn1-6 libtinfo6 libtirpc3 libunistring2 libuuid1 libx11-6 libxcb1 libxext6 libxml2 libxrender1 libxslt1.1 procps xfonts-75dpi xfonts-base zlib1g
|
|
RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \
|
|
DOWNLOADS_URL=${SECRET_DOWNLOADS_URL:-${DOWNLOADS_URL}} ; \
|
|
mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \
|
|
COMPONENTS=( \
|
|
"python-3.12.11-10-linux-${OS_ARCH}-debian-12" \
|
|
"render-template-1.0.9-156-linux-${OS_ARCH}-debian-12" \
|
|
"postgresql-client-18.0.0-0-linux-${OS_ARCH}-debian-12" \
|
|
"node-22.20.0-0-linux-${OS_ARCH}-debian-12" \
|
|
"odoo-19.0.20251001-0-linux-${OS_ARCH}-debian-12" \
|
|
) ; \
|
|
for COMPONENT in "${COMPONENTS[@]}"; do \
|
|
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
|
curl -SsLf "https://${DOWNLOADS_URL}/${COMPONENT}.tar.gz" -O ; \
|
|
curl -SsLf "https://${DOWNLOADS_URL}/${COMPONENT}.tar.gz.sha256" -O ; \
|
|
fi ; \
|
|
sha256sum -c "${COMPONENT}.tar.gz.sha256" ; \
|
|
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner ; \
|
|
rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \
|
|
done
|
|
RUN apt-get update && apt-get upgrade -y && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
|
RUN find / -perm /6000 -type f -exec chmod a-s {} \; || true
|
|
RUN curl -sLO "https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-3/wkhtmltox_0.12.6.1-3.bookworm_${OS_ARCH}.deb" && \
|
|
if [ "$OS_ARCH" = "amd64" ]; then \
|
|
echo "98ba0d157b50d36f23bd0dedf4c0aa28c7b0c50fcdcdc54aa5b6bbba81a3941d wkhtmltox_0.12.6.1-3.bookworm_${OS_ARCH}.deb" | sha256sum -c - ; \
|
|
else \
|
|
echo "b6606157b27c13e044d0abbe670301f88de4e1782afca4f9c06a5817f3e03a9c wkhtmltox_0.12.6.1-3.bookworm_${OS_ARCH}.deb" | sha256sum -c - ; \
|
|
fi && \
|
|
dpkg -i "wkhtmltox_0.12.6.1-3.bookworm_${OS_ARCH}.deb" && \
|
|
rm wkhtmltox_0.12.6.1-3.bookworm_${OS_ARCH}.deb
|
|
|
|
COPY rootfs /
|
|
RUN /opt/bitnami/scripts/odoo/postunpack.sh
|
|
ENV APP_VERSION="19.0.20251001" \
|
|
BITNAMI_APP_NAME="odoo" \
|
|
IMAGE_REVISION="0" \
|
|
PATH="/opt/bitnami/python/bin:/opt/bitnami/common/bin:/opt/bitnami/postgresql/bin:/opt/bitnami/node/bin:/opt/bitnami/odoo/bin:$PATH"
|
|
|
|
EXPOSE 3000 8069 8072
|
|
|
|
ENTRYPOINT [ "/opt/bitnami/scripts/odoo/entrypoint.sh" ]
|
|
CMD [ "/opt/bitnami/scripts/odoo/run.sh" ]
|