fix: protobuf compiler not needed in runtime container

This commit is contained in:
Greg Heartsfield 2023-02-11 13:57:53 -06:00
parent d31e974d56
commit b3db2bd081

View File

@ -22,7 +22,7 @@ FROM docker.io/library/debian:bullseye-slim
ARG APP=/usr/src/app
ARG APP_DATA=/usr/src/app/db
RUN apt-get update \
&& apt-get install -y ca-certificates tzdata sqlite3 protobuf-compiler libc6 \
&& apt-get install -y ca-certificates tzdata sqlite3 libc6 \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 8080