fix redeem dockerfile to compile contracts

This commit is contained in:
Andrea Franz 2020-07-01 13:16:11 +02:00
parent 0677ea7b89
commit 670c20b3c9
No known key found for this signature in database
GPG Key ID: 4F0D2F2D9DE7F29D
2 changed files with 2 additions and 1 deletions

View File

@ -6,4 +6,5 @@
/dist
/build
/node_modules
/scripts/contracts
/scripts/node_modules

View File

@ -5,7 +5,7 @@ WORKDIR /usr/relayer
COPY . .
RUN yarn && \
cd scripts && yarn && cd ../ \
cd scripts && yarn && cd ../ && \
make build-relayer-contracts
EXPOSE 3000