FROM node:13.6.0-alpine3.11

WORKDIR /app

RUN apk add --update git python make g++

ENV PORT 3000
EXPOSE 3000

CMD ["yarn", "start"]