From 737802fc06a3515991578f4dc711cf2635010a53 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Fri, 28 Aug 2020 15:19:47 +0100 Subject: [PATCH] Update Complement dockerfile to not wait for apt-get input --- build/scripts/Complement.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/Complement.Dockerfile b/build/scripts/Complement.Dockerfile index 6489c22e..32c5234b 100644 --- a/build/scripts/Complement.Dockerfile +++ b/build/scripts/Complement.Dockerfile @@ -1,5 +1,5 @@ FROM golang:1.13-stretch as build -RUN apt-get update && apt-get install sqlite3 +RUN apt-get update && apt-get install -y sqlite3 WORKDIR /build # Utilise Docker caching when downloading dependencies, this stops us needlessly