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 333b225 commit 169f9feCopy full SHA for 169f9fe
Dockerfile
@@ -11,6 +11,7 @@ RUN echo "Building Amaru..." \
11
FROM ghcr.io/blinklabs-io/cardano-configs:20250618-1 AS cardano-configs
12
13
FROM debian:bookworm-slim AS amaru
14
+COPY --from=rustbuilder /code/amaru/data/ /data/
15
COPY --from=rustbuilder /code/amaru/target/release/amaru /bin/
16
COPY --from=cardano-configs /config/ /opt/cardano/config/
17
RUN apt-get update -y \
@@ -19,5 +20,5 @@ RUN apt-get update -y \
19
20
libssl3 \
21
llvm-14-runtime \
22
&& rm -rf /var/lib/apt/lists/*
23
+WORKDIR /data
24
ENTRYPOINT ["/bin/amaru"]
-
0 commit comments