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