1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-01 03:15:58 +03:00

Remove apk update in Dockerfile

With `--no-cache` on `apk add`, there is no need to do `apk update`
This commit is contained in:
Peter Dave Hello 2019-03-09 17:46:39 +08:00 committed by GitHub
parent aff32be78e
commit e3baea9571
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,8 +3,7 @@ WORKDIR /app
COPY . .
# Install system packages
RUN apk update --no-cache \
&& apk add --no-cache \
RUN apk add --no-cache \
ca-certificates \
build-base \
python3 \