From 5d32640af45357b4c1d54fe98a32baf40bf7ed99 Mon Sep 17 00:00:00 2001 From: gonzalezzfelipe Date: Thu, 7 Nov 2024 12:39:58 -0300 Subject: [PATCH] fix: Build from source --- docker/dockerfile.hydra | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/dockerfile.hydra b/docker/dockerfile.hydra index 3cdb039..1037997 100644 --- a/docker/dockerfile.hydra +++ b/docker/dockerfile.hydra @@ -3,8 +3,8 @@ FROM rust:${RUST_VERSION}-slim-bullseye AS build WORKDIR /app RUN apt-get update && apt-get install -y libssl-dev pkg-config git ca-certificates -RUN git clone https://github.com/gonzalezzfelipe/hydra-control-plane.git -RUN cd hydra-control-plane && git checkout chore/use-hydra-vk-instead-of-bytes +RUN git clone https://github.com/cardano-scaling/hydra-control-plane.git +# RUN cd hydra-control-plane && git checkout chore/use-hydra-vk-instead-of-bytes WORKDIR /app/hydra-control-plane RUN cargo build --locked --release