Switch to apt-get on CLI

`apt` does not have a stable CLI interface
This commit is contained in:
Git'Fellow 2022-08-04 19:53:15 +02:00 committed by GitHub
parent 33dc5a554b
commit 635c5ce9bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@ FROM golang:1.18 AS builder
WORKDIR /workdir
COPY . .
RUN apt -y update && apt -y install protobuf-compiler
RUN apt-get -y update && apt-get -y install protobuf-compiler
RUN make build
FROM alpine:3.15