From 583ad4d1002ec86517500b5f46f66dbdf1c108b0 Mon Sep 17 00:00:00 2001 From: Simeon Romanov Date: Fri, 1 Dec 2023 01:04:08 +0300 Subject: [PATCH] fix checks --- backend/src/connector/context.rs | 1 - dockerfiles/alpine/Dockerfile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/connector/context.rs b/backend/src/connector/context.rs index d6bafaa9..d4b05c0c 100644 --- a/backend/src/connector/context.rs +++ b/backend/src/connector/context.rs @@ -6,7 +6,6 @@ pub trait Has { fn get_mut(&mut self) -> &mut T; } - /// Context, created for each Client instance. #[derive(Clone, Debug, Context)] pub struct ClientContext { diff --git a/dockerfiles/alpine/Dockerfile b/dockerfiles/alpine/Dockerfile index 96f7bf63..959d5d81 100644 --- a/dockerfiles/alpine/Dockerfile +++ b/dockerfiles/alpine/Dockerfile @@ -42,7 +42,7 @@ RUN echo "// if you see this, the build broke" > backend/src/lib.rs \ && echo "// if you see this, the build broke" > cli/src/lib.rs \ && cargo build-backend --profile=$BUILD_PROFILE --target=$BUILD_TARGET -ADD . ./ +COPY . ./ RUN cargo build-backend --profile=$BUILD_PROFILE --target=$BUILD_TARGET \ && mkdir /build_output \