fix: add protobuf-compiler for Docker and CI builds

This commit is contained in:
Greg Heartsfield 2023-02-11 13:56:15 -06:00
parent 36eaf9fea5
commit d31e974d56
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ environment:
packages: packages:
- cargo - cargo
- sqlite-devel - sqlite-devel
- protobuf-compiler
sources: sources:
- https://git.sr.ht/~gheartsfield/nostr-rs-relay/ - https://git.sr.ht/~gheartsfield/nostr-rs-relay/
shell: false shell: false

View File

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