Simplify Dockerfile Alpine Linux apk usage

Remove additional `--update` and manual clean up for apk in Dockerfile
This commit is contained in:
Peter Dave Hello 2022-02-23 22:42:03 +08:00
parent 773b80a969
commit b29f320fd4
1 changed files with 1 additions and 2 deletions

View File

@ -21,8 +21,7 @@ LABEL\
org.opencontainers.image.version=$VERSION
# Update certificates.
RUN apk --no-cache --update add ca-certificates libcap tzdata && \
rm -rf /var/cache/apk/* && \
RUN apk --no-cache add ca-certificates libcap tzdata && \
mkdir -p /opt/adguardhome/conf /opt/adguardhome/work && \
chown -R nobody: /opt/adguardhome