-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
39 lines (29 loc) · 1.26 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
## BUILDING
## (from project root directory)
## $ docker build -t node-js-for-sethbergman-polymer-ecommerce .
##
## RUNNING
## $ docker run -p 3000:3000 node-js-for-sethbergman-polymer-ecommerce
##
## 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/bitnami-containers/minideb-extras:jessie-r13-buildpack
MAINTAINER Bitnami <[email protected]>
ENV STACKSMITH_STACK_ID="ii6yc1o" \
STACKSMITH_STACK_NAME="Node.js for sethbergman/polymer-ecommerce" \
STACKSMITH_STACK_PRIVATE="1"
# Install required system packages
RUN install_packages libc6 libssl1.0.0 libncurses5 libtinfo5 zlib1g libbz2-1.0 libreadline6 libstdc++6 libgcc1 ghostscript imagemagick libmysqlclient18
RUN bitnami-pkg install node-7.9.0-0 --checksum 8cad1e94040693d46027c401d1ed5bd64f5d4583ff68197483ef3b4512691bf3
ENV PATH=/opt/bitnami/node/bin:/opt/bitnami/python/bin:$PATH \
NODE_PATH=/opt/bitnami/node/lib/node_modules
## STACKSMITH-END: Modifications below this line will be unchanged when regenerating
# ExpressJS template
COPY . /app
WORKDIR /app
RUN npm install
EXPOSE 3000
CMD ["npm", "start"]