FROM node:12.14.1-alpine3.11 WORKDIR /app RUN apk add --update git ENV PORT 3000 EXPOSE 3000 CMD ["yarn", "start"]