11 lines
397 B
Docker
11 lines
397 B
Docker
# Pinned to Debian Bookworm so the compiled binary is compatible with the
|
|
# Debian Bookworm runtime image used by Dockerfile (GLIBC 2.36).
|
|
FROM rust:1-bookworm
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# lance-* generates protobuf bindings during compilation.
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends protobuf-compiler libprotobuf-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|