11.6.0-rhel-7-r0 release

This commit is contained in:
Bitnami Bot
2019-01-18 16:09:33 +00:00
parent 5d5d4a96e3
commit 5852ca05dc
4 changed files with 44 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
FROM registry.rhc4tp.openshift.com/bitnami/rhel-extras-7:latest
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
HOME="/"
# Install required system packages and dependencies
RUN install_packages build-essential bzip2-libs ca-certificates curl git glibc keyutils-libs krb5-libs libcom_err libgcc libselinux libstdc++ ncurses-libs nss-softokn-freebl openssl-libs pcre pkg-config readline unzip wget zlib
RUN bitnami-pkg install node-11.6.0-0 --checksum f227253acac43941492b0c04d845c78bbd8029ed21b100491007d123173dbb68
COPY rootfs /
ENV BITNAMI_APP_NAME="node" \
BITNAMI_IMAGE_VERSION="11.6.0-rhel-7-r0" \
NAMI_PREFIX="/.nami" \
PATH="/opt/bitnami/node/bin:/opt/bitnami/python/bin:$PATH"
EXPOSE 3000
WORKDIR /app
USER 1001
ENTRYPOINT [ "/app-entrypoint.sh" ]
CMD [ "node" ]

View File

@@ -0,0 +1,11 @@
version: '2'
services:
node:
tty: true # Enables debugging capabilities when attached to this container.
image: 'bitnami/node:11-rhel-7'
# command: sh -c 'npm install && npm start'
ports:
- 3000:3000
volumes:
- .:/app

View File

@@ -0,0 +1,10 @@
#!/bin/bash -e
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
print_welcome_page
exec tini -- "$@"

View File

@@ -44,6 +44,7 @@ Bitnami containers can be used with [Kubeapps](https://kubeapps.com/) for deploy
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/).
* [`11-rhel-7`, `11.6.0-rhel-7-r0` (11/rhel-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-node/blob/11.6.0-rhel-7-r0/11/rhel-7/Dockerfile)
* [`11-ol-7`, `11.6.0-ol-7-r24` (11/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-node/blob/11.6.0-ol-7-r24/11/ol-7/Dockerfile)
* [`11-debian-9`, `11.6.0-debian-9-r19`, `11`, `11.6.0`, `11.6.0-r19` (11/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-node/blob/11.6.0-debian-9-r19/11/debian-9/Dockerfile)
* [`10-rhel-7`, `10.15.0-rhel-7-r0` (10/rhel-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-node/blob/10.15.0-rhel-7-r0/10/rhel-7/Dockerfile)
@@ -55,7 +56,6 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
* [`6-rhel-7`, `6.16.0-rhel-7-r0` (6/rhel-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-node/blob/6.16.0-rhel-7-r0/6/rhel-7/Dockerfile)
* [`6-ol-7`, `6.16.0-ol-7-r23` (6/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-node/blob/6.16.0-ol-7-r23/6/ol-7/Dockerfile)
* [`6-debian-9`, `6.16.0-debian-9-r19`, `6`, `6.16.0`, `6.16.0-r19` (6/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-node/blob/6.16.0-debian-9-r19/6/debian-9/Dockerfile)
* [`11-rhel-7`, `0.0.0-rhel-7-r0` (11/rhel-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-node/blob/0.0.0-rhel-7-r0/11/rhel-7/Dockerfile)
Subscribe to project updates by watching the [bitnami/node GitHub repo](https://github.com/bitnami/bitnami-docker-node).