1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 22:03:54 +03:00
copilot/spikes/leak/Dockerfile

10 lines
172 B
Docker
Raw Normal View History

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"]