1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 13:53:51 +03:00
copilot/spikes/leak/Dockerfile
2016-11-22 23:05:16 +00:00

10 lines
172 B
Docker

FROM mhart/alpine-node:7
WORKDIR /src
ADD . .
RUN npm install -g yarn
RUN yarn install --production --pure-lockfile --prefer-offline
EXPOSE 8000
CMD ["node", "start.js"]