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 e47f2f4 commit d766c67Copy full SHA for d766c67
images/solana-validator/Dockerfile
@@ -32,9 +32,15 @@ RUN mv /app/agave-$AGAVE_VERSION /app/agave
32
33
34
WORKDIR /app/agave
35
+# Build validator
36
RUN cargo build --bin solana-test-validator --release
37
RUN cp target/release/solana-test-validator /app/bin/
38
39
+# Build solana
40
+RUN cargo build --bin solana --release
41
+RUN cp target/release/solana /app/bin/
42
+
43
44
# Final app image
45
FROM base AS final
46
@@ -43,4 +49,6 @@ RUN apt update && \
49
rm -rf /var/lib/apt/lists/*
50
51
ADD solana_artifacts/ /programs/
52
53
54
COPY --from=builder /app/bin/* /app/bin
0 commit comments