fox-send/Dockerfile

10 lines
112 B
Docker
Raw Normal View History

2017-06-08 23:11:17 +00:00
FROM node:8-alpine
COPY . /app
WORKDIR /app
RUN mkdir static
RUN npm install
EXPOSE 1443
CMD ["npm", "start"]