Files
send/Dockerfile
2017-06-21 08:42:18 -07:00

12 lines
128 B
Docker

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