tellform/Dockerfile

60 lines
1.5 KiB
Docker
Raw Normal View History

2016-08-17 19:04:42 +00:00
# Build:
2017-10-11 05:07:13 +00:00
# docker build -t tellform-prod -f ./Dockerfile-production .
2016-08-17 19:04:42 +00:00
#
# Run:
2017-10-11 05:07:13 +00:00
# docker run -it tellform-prod
2016-12-02 17:35:29 +00:00
FROM phusion/baseimage:0.9.19
2019-04-30 02:09:25 +00:00
MAINTAINER Arielle Baldwynn <team@tellform.com>
2015-07-09 22:15:34 +00:00
2016-12-01 00:29:44 +00:00
# Install Utilities
2017-10-11 05:07:13 +00:00
RUN apt-get update -q \
2016-12-01 00:29:44 +00:00
&& apt-get install -yqq \
curl \
2017-09-30 00:33:55 +00:00
ant \
2016-12-01 00:29:44 +00:00
git \
gcc \
make \
build-essential \
libkrb5-dev \
python \
sudo \
apt-utils \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Install nodejs
RUN curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
RUN sudo apt-get install -yq nodejs \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2016-08-17 19:04:42 +00:00
2017-10-11 05:07:13 +00:00
# Install NPM Global Libraries
RUN npm install --quiet -g grunt bower pm2 && npm cache clean
2016-08-17 19:04:42 +00:00
2016-12-01 00:29:44 +00:00
WORKDIR /opt/tellform
2017-10-11 05:07:13 +00:00
RUN mkdir -p /opt/tellform/public/lib
2016-08-17 19:04:42 +00:00
2016-12-01 00:29:44 +00:00
# Add bower.json
COPY bower.json /opt/tellform/bower.json
COPY .bowerrc /opt/tellform/.bowerrc
2016-08-17 19:04:42 +00:00
2017-10-11 05:07:13 +00:00
COPY ./process.yml /opt/tellform/process.yml
2016-12-01 00:29:44 +00:00
COPY ./app /opt/tellform/app
COPY ./public /opt/tellform/public
COPY ./config /opt/tellform/config
COPY ./gruntfile.js /opt/tellform/gruntfile.js
COPY ./server.js /opt/tellform/server.js
2017-04-03 20:28:24 +00:00
COPY ./scripts/create_admin.js /opt/tellform/scripts/create_admin.js
2016-08-17 19:04:42 +00:00
2017-10-11 05:07:13 +00:00
# Copies the local package.json file to the container
# and utilities docker container cache to not needing to rebuild
# and install node_modules/ everytime we build the docker, but only
# when the local package.json file changes.
# Add npm package.json
COPY ./package.json /opt/tellform/package.json
2017-10-19 00:18:18 +00:00
RUN npm install --only=production --quiet
2017-09-30 00:33:55 +00:00
2017-10-11 05:07:13 +00:00
# Run TellForm server
2017-10-19 00:18:18 +00:00
CMD ["node", "server.js"]