Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: cardano-cli 10.0.0.0 #27

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
@@ -1,6 +1,6 @@
FROM ghcr.io/blinklabs-io/haskell:9.6.4-3.10.2.0-1 AS cardano-cli-build
# Install cardano-cli
ARG CLI_VERSION=9.4.1.0
ARG CLI_VERSION=10.0.0.0
ENV CLI_VERSION=${CLI_VERSION}
RUN echo "Building tags/${CLI_VERSION}..." \
&& echo tags/cardano-cli-${CLI_VERSION} > /CARDANO_BRANCH \
Expand All @@ -21,8 +21,8 @@
&& rm -rf /root/.cabal/store/ghc-${GHC_VERSION}

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

Check warning on line 24 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/
ENV PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"

Check warning on line 25 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/
COPY --from=cardano-cli-build /usr/local/lib/ /usr/local/lib/
COPY --from=cardano-cli-build /usr/local/include/ /usr/local/include/
COPY --from=cardano-cli-build /root/.local/bin/cardano-* /usr/local/bin/
Expand Down