diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-08-28 15:19:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-28 15:19:47 +0100 |
commit | 737802fc06a3515991578f4dc711cf2635010a53 (patch) | |
tree | 97734d05a77359c01bc29c14893c70fca49c04ea /build/scripts | |
parent | c42c70597cf4b477a498e42188b2b32327bb758c (diff) |
Update Complement dockerfile to not wait for apt-get input
Diffstat (limited to 'build/scripts')
-rw-r--r-- | build/scripts/Complement.Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |