fox-send/Dockerfile

12 lines
121 B
Docker

FROM node:8
COPY . /app
WORKDIR /app
RUN mkdir static
RUN npm install
ENV PORT=1443
EXPOSE $PORT
CMD ["npm", "start"]