diff options
author | 2019-01-13 11:14:41 +0100 | |
---|---|---|
committer | 2019-01-13 11:14:41 +0100 | |
commit | 3949b46fda7926200499f61f984574beb799d1ce (patch) | |
tree | 226e755ddc06137721598260f3b04d9bc59ba948 | |
parent | Minimize stages required to build image. (diff) |
Drop `--update` flag since `--no-cache` implies it.
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index e08e37a76..864b4e557 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.7-alpine3.7 -RUN apk add --update --no-cache \ +RUN apk add --no-cache \ build-base \ freetype-dev \ git \ |