From 635c5ce9bd98a2c7e64d58e725974b6aa9ca2641 Mon Sep 17 00:00:00 2001 From: Git'Fellow Date: Thu, 4 Aug 2022 19:53:15 +0200 Subject: [PATCH] Switch to apt-get on CLI `apt` does not have a stable CLI interface --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3887ba5..83461b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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