stacksmith: Add Dockerfile

This commit is contained in:
stacksmith-bot
2016-07-12 16:53:33 -07:00
parent b811f9f391
commit 2e8aa36858

View File

@@ -1,17 +1,35 @@
## BUILDING
## (from project root directory)
## $ docker build -t bitnami-bitnami-docker-node .
##
## RUNNING
## $ docker run -p 3000:3000 bitnami-bitnami-docker-node
##
## CONNECTING
## Lookup the IP of your active docker host using:
## $ docker-machine ip $(docker-machine active)
## Connect to the container at DOCKER_IP:3000
## replacing DOCKER_IP for the IP of your active docker host
FROM gcr.io/stacksmith-images/ubuntu-buildpack:14.04-r8
MAINTAINER Bitnami <containers@bitnami.com>
ENV BITNAMI_IMAGE_VERSION=6.3.0-r0 \
BITNAMI_APP_NAME=node
ENV STACKSMITH_STACK_ID="2eg0n7n" \
STACKSMITH_STACK_NAME="bitnami/bitnami-docker-node" \
STACKSMITH_STACK_PRIVATE="1"
RUN bitnami-pkg install node-6.3.0-0 --checksum f2997c421e45beb752673a531bf475231d183c30f7f8d5ec1a5fb68d39744d5f
ENV PATH=/opt/bitnami/python/bin:/opt/bitnami/$BITNAMI_APP_NAME/bin:/opt/bitnami/common/bin:$PATH
RUN bitnami-pkg install imagemagick-6.7.5-10-3 --checksum 617e85a42c80f58c568f9bc7337e24c03e35cf4c7c22640407a7e1e16880cf88
RUN bitnami-pkg install mysql-libraries-10.1.13-0 --checksum 71ca428b619901123493503f8a99ccfa588e5afddd26e0d503a32cca1bc2a389
ENV PATH=/opt/bitnami/node/bin:/opt/bitnami/python/bin:$PATH \
NODE_PATH=/opt/bitnami/node/lib/node_modules
CMD ["node"]
## STACKSMITH-END: Modifications below this line will be unchanged when regenerating
# Node base template
COPY . /app
WORKDIR /app
EXPOSE 3000
RUN npm install
CMD ["node"]