mirror of
https://github.com/bitnami/containers.git
synced 2026-02-22 08:07:24 +08:00
26 lines
679 B
Docker
26 lines
679 B
Docker
FROM gcr.io/stacksmith-images/minideb-buildpack:jessie-r9
|
|
|
|
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.5.0-0 --checksum 349c41abb63045755df76ce84cc60dac1d98278f9508e4b476bc65130942ab1d
|
|
|
|
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.5.0-r0
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 3000
|
|
|
|
ENTRYPOINT ["/app-entrypoint.sh"]
|
|
|
|
CMD ["node"]
|