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 @@ -9,7 +9,7 @@
RUN --mount=type=cache,target=/gomod-cache --mount=type=cache,target=/go-cache make build

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/txtop:0.13.0 AS txtop

Expand All @@ -22,8 +22,8 @@
sqlite3 \
wget && \
rm -rf /var/lib/apt/lists/*
ENV LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"

Check warning on line 25 in Dockerfile

View workflow job for this annotation

GitHub Actions / docker (ubuntu-latest, 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/
ENV PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"

Check warning on line 26 in Dockerfile

View workflow job for this annotation

GitHub Actions / docker (ubuntu-latest, 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/
COPY --from=build /code/dingo /bin/
COPY --from=cardano-cli /usr/local/bin/cardano-cli /usr/local/bin/
COPY --from=cardano-cli /usr/local/include/ /usr/local/include/
Expand Down
Loading