Files
dokku/tests/apps/dockerfile/Dockerfile

15 lines
363 B
Docker
Raw Normal View History

2015-02-07 10:47:04 -08:00
FROM ubuntu:trusty
ENV LC_ALL C
ENV DEBIAN_FRONTEND noninteractive
ENV DEBCONF_NONINTERACTIVE_SEEN true
EXPOSE 3000
2015-02-07 10:47:04 -08:00
RUN apt-get install -y software-properties-common && add-apt-repository ppa:chris-lea/node.js && apt-get update
RUN apt-get install -y build-essential curl postgresql-client-9.3 nodejs git
COPY . /app
WORKDIR /app
RUN npm install
CMD npm start