Skip to content

Commit

Permalink
Add pkg-config to Dockerfile (#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-awd authored Apr 30, 2024
1 parent e15f99c commit 07a6698
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 07a6698

Please sign in to comment.