2.0.0-debian-9-r0 release

This commit is contained in:
Bitnami Bot 2019-11-13 11:35:11 +00:00
parent 6582b02f8c
commit 1cdef1bf1b
5 changed files with 60 additions and 3 deletions

View File

@ -0,0 +1,20 @@
FROM bitnami/minideb-extras:stretch-r494
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
HOME="/"
# Install required system packages and dependencies
RUN install_packages libc6 libgcc1 libstdc++6
RUN bitnami-pkg unpack tensorflow-resnet-2.0.0-0 --checksum 62581ca622c5421aa8f45644a2d3afd995819bd252d5016646b154d31baa0212
RUN echo "deb http://http.us.debian.org/debian testing main non-free contrib" >> /etc/apt/sources.list && apt update && apt remove gcc-6 -y && install_packages gcc-7 libstdc++6
COPY rootfs /
ENV BITNAMI_APP_NAME="tensorflow-resnet" \
BITNAMI_IMAGE_VERSION="2.0.0-debian-9-r0" \
NAMI_PREFIX="/.nami" \
PATH="/opt/bitnami/tensorflow-resnet/bin:$PATH"
USER 1001
ENTRYPOINT [ "/app-entrypoint.sh" ]
CMD [ "tail", "-f", "/dev/null" ]

View File

@ -0,0 +1,24 @@
version: '2'
services:
tensorflow-serving:
image: 'bitnami/tensorflow-serving:2'
environment:
- TENSORFLOW_SERVING_MODEL_NAME=resnet
ports:
- 8500:8500
- 8501:8501
volumes:
- 'tensorflow_serving_data:/bitnami'
- '/tmp/model-data:/bitnami/model-data'
tensorflow-resnet:
image: 'bitnami/tensorflow-resnet:2'
depends_on:
- tensorflow-serving
volumes:
- 'tensorflow_resnet_data:/bitnami'
- '/tmp/model-data:/bitnami/model-data'
volumes:
tensorflow_serving_data:
driver: local
tensorflow_resnet_data:
driver: local

View File

@ -0,0 +1,13 @@
#!/bin/bash -e
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
print_welcome_page
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "tail" ]]; then
nami_initialize tensorflow-resnet
info "Starting tensorflow-resnet... "
fi
exec tini -- "$@"

View File

@ -43,7 +43,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
* [`2-ol-7`, `2.0.0-ol-7-r1` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-tensorflow-resnet/blob/2.0.0-ol-7-r1/2/ol-7/Dockerfile)
* [`2-debian-9`, `0.0.0-debian-9-r0`, `2`, `0.0.0`, `0.0.0-r0`, `latest` (2/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-tensorflow-resnet/blob/0.0.0-debian-9-r0/2/debian-9/Dockerfile)
* [`2-debian-9`, `2.0.0-debian-9-r0`, `2`, `2.0.0`, `2.0.0-r0`, `latest` (2/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-tensorflow-resnet/blob/2.0.0-debian-9-r0/2/debian-9/Dockerfile)
Subscribe to project updates by watching the [bitnami/tensorflow-resnet GitHub repo](https://github.com/bitnami/bitnami-docker-tensorflow-resnet).

View File

@ -1,7 +1,7 @@
version: '2'
services:
tensorflow-serving:
image: 'bitnami/tensorflow-serving:1'
image: 'bitnami/tensorflow-serving:2'
environment:
- TENSORFLOW_SERVING_MODEL_NAME=resnet
ports:
@ -11,7 +11,7 @@ services:
- 'tensorflow_serving_data:/bitnami'
- '/tmp/model-data:/bitnami/model-data'
tensorflow-resnet:
image: 'bitnami/tensorflow-resnet:1'
image: 'bitnami/tensorflow-resnet:2'
depends_on:
- tensorflow-serving
volumes: