mirror of
https://github.com/dokku/dokku.git
synced 2026-09-01 19:49:25 +02:00
12 lines
369 B
Docker
12 lines
369 B
Docker
FROM ubuntu:trusty
|
|
ENV LC_ALL C
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
ENV DEBCONF_NONINTERACTIVE_SEEN true
|
|
EXPOSE 5000
|
|
|
|
ADD . /app
|
|
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
|
|
RUN cd /app && npm install
|
|
CMD cd /app && npm start
|