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
@@ -1,5 +1,5 @@
FROM rust:bookworm AS rustbuilder
ARG MITHRIL_VERSION=2430.0
ARG MITHRIL_VERSION=2437.1
ENV MITHRIL_VERSION=${MITHRIL_VERSION}
WORKDIR /code
RUN echo "Building tags/${MITHRIL_VERSION}..." \
Expand All @@ -8,9 +8,9 @@
&& git checkout tags/${MITHRIL_VERSION} \
&& cargo build --release -p mithril-client-cli

FROM ghcr.io/blinklabs-io/cardano-configs:20240725-1 as cardano-configs

Check warning on line 11 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-amd64

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

FROM debian:bookworm-slim as mithril-client

Check warning on line 13 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-amd64

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
COPY --from=rustbuilder /code/mithril/target/release/mithril-client /bin/
COPY --from=cardano-configs /config/ /opt/cardano/config/
RUN apt-get update -y \
Expand Down