FROM docker.io/bitnami/minideb:buster LABEL maintainer "Bitnami " ENV HOME="/" \ OS_ARCH="amd64" \ OS_FLAVOUR="debian-10" \ OS_NAME="linux" COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gcc-7 gzip libc6 libgcc1 libstdc++6 procps tar RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "tensorflow-resnet" "2.6.0-0" --checksum d9e160c1109df0e4c563e4e4d3017852301ca84a8b348850b765f0771db76b6c RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e RUN chmod g+rwX /opt/bitnami COPY rootfs / ENV BITNAMI_APP_NAME="tensorflow-resnet" \ BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r44" \ PATH="/opt/bitnami/tensorflow-resnet/bin:/opt/bitnami/common/bin:$PATH" USER 1001 ENTRYPOINT [ "/opt/bitnami/scripts/tensorflow-resnet/entrypoint.sh" ] CMD [ "tail", "-f", "/dev/null" ]