From cc596ec2433cf138d43592236add7deaec715c00 Mon Sep 17 00:00:00 2001 From: Carine Dengler Date: Thu, 10 Oct 2024 14:46:10 +0200 Subject: [PATCH] fix: add '-y' flag to make sure apt builds autonomously --- Dockerfiles/Dockerfile.dela | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfiles/Dockerfile.dela b/Dockerfiles/Dockerfile.dela index 2f93c5ff..5aaeb0d7 100644 --- a/Dockerfiles/Dockerfile.dela +++ b/Dockerfiles/Dockerfile.dela @@ -1,5 +1,5 @@ FROM golang:1.20.6-bookworm AS base -RUN apt-get update && apt-get install git +RUN apt-get update -y && apt-get install -y git WORKDIR /go/d-voting COPY go.mod . COPY go.sum .