Merge pull request #312 from solracsf/patch-1

Switch to apt-get on CLI
This commit is contained in:
Joachim Bauch 2022-08-05 09:04:11 +02:00 committed by GitHub
commit 5b34d8cc3f
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