diff --git a/Dockerfile b/Dockerfile index bb05cdd..af85f8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,10 +16,10 @@ RUN cargo build --release FROM ubuntu:22.04 # Install necessary runtime dependencies RUN apt-get update && \ - apt-get install -y libssl3 ca-certificates && \ + apt-get install -y libssl3 ca-certificates curl && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* # Copy the compiled binary from the builder stage COPY --from=builder /app/target/release/rustdress /usr/local/bin/ # Run the Rust binary -CMD ["rustdress"] \ No newline at end of file +CMD ["rustdress"]