FROM basaltinc/docker-node-php-base:develop
WORKDIR /app
COPY . .
RUN yarn install && yarn build
EXPOSE 3999

CMD PORT=3999 yarn start
