From 45af5588cc5f98a9809daa2a286582cd1ffd5dfa Mon Sep 17 00:00:00 2001 From: Alois Date: Fri, 28 Nov 2025 16:24:55 +0100 Subject: [PATCH] Updated docker container --- dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfile b/dockerfile index 6dd4149..5de3d03 100644 --- a/dockerfile +++ b/dockerfile @@ -9,12 +9,12 @@ RUN cargo build --release # Runtime stage FROM debian:sid -WORKDIR /app/data +WORKDIR /app RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/* -COPY --from=builder /app/target/release/iota .. +COPY --from=builder /app/target/release/iota . EXPOSE 1984 -CMD ["../iota"] \ No newline at end of file +CMD ["iota"] \ No newline at end of file