This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new 9b678753 fix(ci): fix invalid paths in dockerfiles (#1841)
9b678753 is described below
commit 9b678753942f096c6ae2c852036ed0730cef08af
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Sat Jun 7 13:56:16 2025 +0200
fix(ci): fix invalid paths in dockerfiles (#1841)
Co-authored-by: Piotr Gankiewicz <[email protected]>
---
Dockerfile | 2 +-
Dockerfile.ci | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index 81717065..7f7ca4bf 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -22,7 +22,7 @@ RUN cargo build --bin iggy --release
RUN cargo build --bin iggy-server --release
FROM gcr.io/distroless/cc
-COPY configs ./configs
+COPY ./core/configs ./configs
COPY --from=builder /build/target/release/iggy .
COPY --from=builder /build/target/release/iggy-server .
diff --git a/Dockerfile.ci b/Dockerfile.ci
index 8ee858d9..1d5c6ed8 100644
--- a/Dockerfile.ci
+++ b/Dockerfile.ci
@@ -25,7 +25,7 @@ RUN test -n "$IGGY_SERVER_PATH" || (echo "IGGY_SERVER_PATH
not set" && false)
WORKDIR /iggy
-COPY configs ./configs
+COPY ./core/configs ./configs
COPY ${IGGY_CMD_PATH} ./
COPY ${IGGY_SERVER_PATH} ./