FROM node:9.11.1-alpine
WORKDIR /app
RUN apk add --update git
ENV PORT 3000
EXPOSE 3000
CMD ["yarn", "start"]