We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e7e07e commit b7936d2Copy full SHA for b7936d2
Dockerfile
@@ -28,8 +28,11 @@ WORKDIR /across-relayer
28
# Clode the relayer code and copy it to the across-relayer directory. Remove the package directory.
29
RUN git clone https://github.com/across-protocol/relayer-v2.git .
30
31
+# This command fix a concurrency issue when the package was not found.
32
+RUN npx -y only-allow npm
33
+
34
# Install depdencies.
-RUN npx -y only-allow npm && yarn install --frozen-lockfile && yarn build
35
+RUN yarn install --frozen-lockfile && yarn build
36
37
# Set back the working directory to the protocol directory to default to that package.
38
WORKDIR /protocol
0 commit comments