0.12.1-debian-9-r0 release

This commit is contained in:
Bitnami Bot 2019-02-20 11:25:08 +00:00
parent a318549a50
commit 343c30707c
3 changed files with 31 additions and 2 deletions

View File

@ -0,0 +1,18 @@
FROM bitnami/minideb:stretch
LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages ca-certificates libc6 libgcc1 libstdc++6 wget
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jsonnet-0.12.1-0-linux-amd64-debian-9.tar.gz && \
echo "87409af7655d9c150bb3931bc3c4f3d7abfc085c5aeaad87473866b4c1d525de /tmp/bitnami/pkg/cache/jsonnet-0.12.1-0-linux-amd64-debian-9.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/jsonnet-0.12.1-0-linux-amd64-debian-9.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/jsonnet-0.12.1-0-linux-amd64-debian-9.tar.gz
RUN chmod +x /opt/bitnami/jsonnet/bin/jsonnet
ENV BITNAMI_APP_NAME="jsonnet" \
BITNAMI_IMAGE_VERSION="0.12.1-debian-9-r0" \
PATH="/opt/bitnami/jsonnet/bin:$PATH"
USER 1001
ENTRYPOINT [ "jsonnet" ]
CMD [ "--help" ]

View File

@ -0,0 +1,10 @@
version: '2'
services:
jsonnet:
image: bitnami/jsonnet:0.12
volumes:
- jsonnet_data:/bitnami
volumes:
jsonnet_data:
driver: local

View File

@ -23,8 +23,9 @@ $ docker run --name jsonnet bitnami/jsonnet:latest
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/).
* [`0.11-ol-7`, `0.11.2-ol-7-r71` (0.11/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-git/blob/0.11.2-ol-7-r71/0.11/ol-7/Dockerfile)
* [`0.11-debian-9`, `0.11.2-debian-9-r68`, `0.11`, `0.11.2`, `0.11.2-r68`, `latest` (0.11/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-git/blob/0.11.2-debian-9-r68/0.11/debian-9/Dockerfile)
* [`0.12-debian-9`, `0.12.1-debian-9-r0`, `0.12`, `0.12.1`, `0.12.1-r0`, `latest` (0.12/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-git/blob/0.12.1-debian-9-r0/0.12/debian-9/Dockerfile)
* [`0.12-rhel-7`, `0.0.0-rhel-7-r0` (0.12/rhel-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-git/blob/0.0.0-rhel-7-r0/0.12/rhel-7/Dockerfile)
* [`0.12-ol-7`, `0.0.0-ol-7-r0` (0.12/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-git/blob/0.0.0-ol-7-r0/0.12/ol-7/Dockerfile)
Subscribe to project updates by watching the [bitnami/jsonnet GitHub repo](https://github.com/bitnami/bitnami-docker-jsonnet).