fox-send/Dockerfile

12 lines
128 B
Docker
Raw Normal View History

2017-06-22 23:43:23 +00:00
FROM node:7-alpine
2017-06-08 23:11:17 +00:00
COPY . /app
WORKDIR /app
RUN mkdir static
RUN npm install
ENV PORT=1443
EXPOSE $PORT
2017-06-08 23:11:17 +00:00
CMD ["npm", "start"]