db-rest/Dockerfile

14 lines
146 B
Docker
Raw Normal View History

2017-10-23 23:13:53 +02:00
FROM node
WORKDIR /app
ADD . /app
RUN npm install --production
EXPOSE 3000
ENV HOSTNAME db.transport.rest
ENV PORT 3000
CMD ["npm", "start"]