Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
&& rm -rf /root/.cabal/store/ghc-${GHC_VERSION}

FROM ghcr.io/blinklabs-io/cardano-cli:10.11.1.0-1 AS cardano-cli
FROM ghcr.io/blinklabs-io/cardano-configs:20250812-1 AS cardano-configs
FROM ghcr.io/blinklabs-io/cardano-configs:20250917-1 AS cardano-configs
FROM ghcr.io/blinklabs-io/mithril-client:0.12.11-1 AS mithril-client
FROM ghcr.io/blinklabs-io/mithril-signer:0.2.249-1 AS mithril-signer
FROM ghcr.io/blinklabs-io/nview:0.10.10 AS nview
FROM ghcr.io/blinklabs-io/txtop:0.13.0 AS txtop

FROM debian:bookworm-slim AS cardano-node
ENV LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"

Check warning on line 32 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-amd64

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$LD_LIBRARY_PATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 32 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-arm64

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$LD_LIBRARY_PATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
ENV PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"

Check warning on line 33 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-amd64

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$PKG_CONFIG_PATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 33 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-arm64

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$PKG_CONFIG_PATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
COPY --from=cardano-node-build /usr/local/lib/ /usr/local/lib/
COPY --from=cardano-node-build /usr/local/include/ /usr/local/include/
COPY --from=cardano-node-build /root/.local/bin/cardano-* /usr/local/bin/
Expand Down