FROM node:18.13.0
WORKDIR /usr/src/app
COPY . .
RUN yarn install && chmod +x entrypoint.sh
EXPOSE 3000
ENTRYPOINT ['/entrypoint.sh']