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 58e17d9 commit a115bbbCopy full SHA for a115bbb
simulators/ethereum/graphql/Dockerfile
@@ -2,6 +2,9 @@
2
FROM golang:1-alpine as builder
3
RUN apk add --update git gcc musl-dev linux-headers
4
5
+# Clone the tests repo.
6
+RUN git clone --depth 1 https://github.com/ethereum/execution-apis.git /execution-apis
7
+
8
# Build the simulator executable.
9
ADD . /source
10
WORKDIR /source
@@ -12,4 +15,5 @@ FROM alpine:latest
12
15
13
16
14
17
COPY --from=builder /source/graphql .
18
+COPY --from=builder /execution-apis/graphql/tests ./tests
19
ENTRYPOINT ["./graphql"]
0 commit comments