Delete interop.Dockerfile (#11887)

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
This commit is contained in:
Nishant Das 2023-01-17 23:09:32 +08:00 committed by GitHub
parent fbafbdd62c
commit 1fca73d761
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,24 +0,0 @@
FROM gcr.io/prysmaticlabs/build-agent AS builder
WORKDIR /workspace
COPY . /workspace/.
# Build binaries for minimal configuration.
RUN bazel build --define ssz=minimal --jobs=auto --remote_cache= \
//beacon-chain \
//validator \
//tools/interop/convert-keys
FROM gcr.io/whiteblock/base:ubuntu1804
COPY --from=builder /workspace/bazel-bin/beacon-chain/linux_amd64_stripped/beacon-chain .
COPY --from=builder /workspace/bazel-bin/validator/linux_amd64_pure_stripped/validator .
COPY --from=builder /workspace/bazel-bin/tools/interop/convert-keys/linux_amd64_stripped/convert-keys .
RUN mkdir /launch
COPY hack/interop_start.sh /launch/start.sh
ENTRYPOINT ["start.sh"]