Skip to content

Commit

Permalink
Add protoc to docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
mwylde committed Aug 24, 2024
1 parent 29edd8e commit 3ba4a85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion crates/arroyo-formats/src/proto/schema.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use anyhow::{anyhow, bail, Context};
use arrow_schema::{DataType, Field, Schema};
use arroyo_rpc::schema_resolver::ConfluentSchemaRegistry;
use arroyo_types::ArroyoExtensionType;
use prost_reflect::{Cardinality, DescriptorPool, FieldDescriptor, Kind, MessageDescriptor};
use regex::Regex;
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ FROM debian:bookworm-slim as arroyo
WORKDIR /app

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

COPY --from=builder /arroyo ./
Expand All @@ -67,7 +67,7 @@ CMD ["cluster"]
FROM rust:slim-bookworm AS arroyo-full
WORKDIR /app
RUN apt-get update && \
apt-get -y install libsasl2-2 ca-certificates curl pkg-config protobuf
apt-get -y install libsasl2-2 ca-certificates curl pkg-config protobuf-compiler

ENV ARROYO__API__RUN_HTTP_PORT=5115

Expand Down

0 comments on commit 3ba4a85

Please sign in to comment.