Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pkg-config to Dockerfile #609

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry,id=${TARGETPLATFORM}-${P
FROM debian:bookworm-slim AS arroyo-single
WORKDIR /app
RUN apt-get update && \
apt-get -y install libssl-dev openssl supervisor libsasl2-dev curl postgresql postgresql-client sudo
apt-get -y install libssl-dev openssl supervisor libsasl2-dev curl postgresql postgresql-client sudo pkg-config

COPY docker/install_deps.sh /install_deps.sh
RUN sh /install_deps.sh run
Expand All @@ -74,7 +74,7 @@ FROM debian:bookworm-slim as arroyo
WORKDIR /app

RUN apt-get update && \
apt-get -y install libsasl2-2 ca-certificates curl
apt-get -y install libsasl2-2 ca-certificates curl pkg-config

COPY --from=builder /arroyo-bin ./

Expand All @@ -89,7 +89,7 @@ ENTRYPOINT [ "/app/arroyo-bin" ]
FROM rust:slim-bookworm AS arroyo-full
WORKDIR /app
RUN apt-get update && \
apt-get -y install libsasl2-2 ca-certificates curl
apt-get -y install libsasl2-2 ca-certificates curl pkg-config

COPY --from=builder /arroyo-bin ./

Expand Down
Loading