4.7.3-r0 release

This release updates requirements and adds support for different release series in GitHub
This commit is contained in:
Bitnami Bot
2017-02-21 14:16:42 +00:00
parent 3d5f216583
commit dfd7cd2044
5 changed files with 48 additions and 1 deletions

View File

@@ -0,0 +1 @@
.git/

25
bitnami/node/4/Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
FROM gcr.io/stacksmith-images/minideb-buildpack:jessie-r10
MAINTAINER Bitnami <containers@bitnami.com>
# System packages required
RUN install_packages libc6 libssl1.0.0 libncurses5 libtinfo5 zlib1g libbz2-1.0 libreadline6 libstdc++6 libgcc1 ghostscript imagemagick libmysqlclient18
# Install node
RUN bitnami-pkg unpack node-4.7.3-1 --checksum 2e40be9892300d3816dd10415d01db2d0a4e8774e4110e5dc28a94d6b12cf2eb
COPY rootfs /
ENV PATH=/opt/bitnami/node/bin:/opt/bitnami/python/bin:$PATH \
NODE_PATH=/opt/bitnami/node/lib/node_modules
ENV BITNAMI_APP_NAME=node \
BITNAMI_IMAGE_VERSION=4.7.3-r0
WORKDIR /app
EXPOSE 3000
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:4
# 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
check_for_updates &
nami_initialize node
exec tini -- "$@"

View File

@@ -2,7 +2,7 @@ machine:
services:
- docker
environment:
RELEASE_SERIES_LIST: 6,7
RELEASE_SERIES_LIST: 4,6,7
LATEST_STABLE: 7
IMAGE_NAME: node
CHART_NAME: node