db-rest/Dockerfile

17 lines
247 B
Docker
Raw Normal View History

FROM node:alpine
2017-10-23 23:13:53 +02:00
WORKDIR /app
ADD . /app
RUN apk add --update git bash && \
npm install --production && \
apk del git && \
rm -rf /tmp/* /var/cache/apk/*
2017-10-23 23:13:53 +02:00
EXPOSE 3000
2020-04-30 15:05:18 +02:00
ENV HOSTNAME v5.db.transport.rest
2017-10-23 23:13:53 +02:00
ENV PORT 3000
CMD ["node", "index.js"]