From c6232be41cc4b9c2127d5b5f22f9c52aa5707a9a Mon Sep 17 00:00:00 2001 From: mfw78 <53399572+mfw78@users.noreply.github.com> Date: Fri, 23 Feb 2024 12:52:59 +0000 Subject: [PATCH] fix: dockerfile missing slash (#2428) # Description Missing slash in the deploy docker. # Changes - [x] Fixes missing slash ## How to test 1. Check the CI/CD builds the deploy correctly. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bdd63b1083..08129c0350 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry --mount=type=cache,targe cp target/release/driver / && \ cp target/release/orderbook / && \ cp target/release/refunder / && \ - cp target/release/solvers + cp target/release/solvers / # Create an intermediate image to extract the binaries FROM docker.io/debian:bookworm-slim as intermediate