Skip to content

Commit

Permalink
add curl as runtime dep
Browse files Browse the repository at this point in the history
  • Loading branch information
niteshbalusu11 committed Feb 8, 2025
1 parent f01b71c commit 037d0cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
CMD ["rustdress"]

0 comments on commit 037d0cd

Please sign in to comment.