FROM node:14.4.0
WORKDIR /usr/relayer
COPY . .
RUN yarn && \
cd scripts && yarn && cd ../ && \
make build-relayer-contracts
EXPOSE 3000