send/Dockerfile
Danny Coates 9d1e207c2f
node 8.1
2017-06-22 17:02:23 -07:00

11 lines
130 B
Docker

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