Update Dockerfile to use Alpine 3.11

Reduce size of image by using --no-cache
This commit is contained in:
techknowlogick 2020-02-01 10:35:02 +01:00 committed by Eliot Berriot
parent ace8481802
commit db9cd08e7a
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
FROM alpine:3.8
FROM alpine:3.11
RUN \
echo 'installing dependencies' && \
apk add \
apk add --no-cache \
bash \
git \
gettext \