From 99c159621ff2b9ffe530a19fb5aa6ed754b57d00 Mon Sep 17 00:00:00 2001 From: Jeffrey Knight Date: Fri, 6 Nov 2020 23:00:41 +0000 Subject: [PATCH] Fix: Version '1.4.9' for 'apt-utils' was not found Fixes: error when running `docker-compose build base` Error: E: Version '1.4.9' for 'apt-utils' was not found ERROR: Service 'base' failed to build: The command '/bin/sh -c apt-get update && apt-get -yqq install --no-install-recommends apt-utils=1.4.9 2>&1' returned a non-zero code: 100 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 89870ab..9d460c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,7 +38,7 @@ ARG COMMIT_YARN_TYPESCRIPT_PLUGIN # https://code.visualstudio.com/docs/remote/containers-advanced#_avoiding-extension-reinstalls-on-container-rebuild ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ - && apt-get -yqq install --no-install-recommends apt-utils=1.4.9 2>&1 + && apt-get -yqq install --no-install-recommends apt-utils 2>&1 # Every directory created here is `chown`ed to `node` because all development # at container runtime will be done under the `node` user. It's good practice