mirror of
https://github.com/bitnami/containers.git
synced 2026-02-25 15:47:42 +08:00
NodeJS 7.6.0 contains several changes. Notable changes from 7.5.0 include:
- deps:
- update V8 to 5.5
- upgrade libuv to 1.11.0
- add node-inspect 1.10.4
- upgrade zlib to 1.2.11
- lib: build node inspect into node
- crypto: Remove expired certs from CNNIC whitelist
- inspector: add --inspect-brk
- fs: allow WHATWG URL objects as paths
- src: support UTF-8 in compiled-in JS source files
- url: extend url.format to support WHATWG URL
26 lines
680 B
Docker
26 lines
680 B
Docker
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-7.6.0-0 --checksum 168e385d8ecc52d637f0b99561d4f357203e619ddfc1a00b9fc97dafc5ecf8fd
|
|
|
|
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=7.6.0-r0
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 3000
|
|
|
|
ENTRYPOINT ["/app-entrypoint.sh"]
|
|
|
|
CMD ["node"]
|