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