7.7.1-r0 release

NodeJS 7.7.1 contains several changes. Notable changes from 7.6.0 include:
  - Fixed bug in 7.7.0 version that will prevent all native modules from building
  - child_process: spawnSync() exit code now is null when the child is killed via signal
  - http: new functions to access the headers for an outgoing HTTP message
  - lib: deprecate node --debug at runtime
  - tls: new tls.TLSSocket() supports sec ctx options
  - url: adding URL.prototype.toJSON support
  - doc: items in the API documentation may now have changelogs
  - crypto: adding support for OPENSSL_CONF again
  - src: adding support for trace-event tracing
This commit is contained in:
Bitnami Bot
2017-03-06 13:06:03 +00:00
parent ccb36b2dc3
commit 506773263d

View File

@@ -1,4 +1,4 @@
FROM gcr.io/stacksmith-images/minideb-buildpack:jessie-r10
FROM gcr.io/stacksmith-images/minideb-buildpack:jessie-r11
MAINTAINER Bitnami <containers@bitnami.com>
@@ -6,7 +6,7 @@ MAINTAINER Bitnami <containers@bitnami.com>
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-7.6.0-0 --checksum 168e385d8ecc52d637f0b99561d4f357203e619ddfc1a00b9fc97dafc5ecf8fd
RUN bitnami-pkg unpack node-7.7.1-0 --checksum f0113dc89a50e5fe3a8008c000b4aa173ad0efd879f084f05d4a515c6e2334a5
COPY rootfs /
@@ -14,7 +14,7 @@ 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=7.6.0-r0
BITNAMI_IMAGE_VERSION=7.7.1-r0
WORKDIR /app