9.11.1-ol-7-r0 release

Update node to 9.11.1
This commit is contained in:
Bitnami Bot
2018-06-05 13:47:54 +00:00
parent ba2b2a2206
commit 573a562db9
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
FROM bitnami/oraclelinux-extras:7-r5
LABEL maintainer "Bitnami <containers@bitnami.com>"
# 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 sqlite unzip wget zlib
RUN bitnami-pkg install node-9.11.1-0 --checksum 493e6f86f708679937991fe6dc15ceff18f602ed14d39dc12d109e88a826dcb6
COPY rootfs /
ENV BITNAMI_APP_NAME="node" \
BITNAMI_IMAGE_VERSION="9.11.1-ol-7-r0" \
PATH="/opt/bitnami/node/bin:/opt/bitnami/python/bin:$PATH"
EXPOSE 3000
WORKDIR /app
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:9-ol-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 -- "$@"