Merge pull request #581 from justincormack/cache

remove use of rm /var/cache/apk
This commit is contained in:
Justin Cormack 2016-09-29 21:13:40 +01:00 committed by GitHub
commit a844cf4294
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# Create a EFI Bootable ISO
FROM mobylinux/alpine-efi:2f8c8e9ecc4bfefaf1b5ca56bac5506baba301f2
FROM mobylinux/alpine-efi:41ce281ca20186b8f5cae3b0fd05260189d6a3d2
WORKDIR /tmp/efi

View File

@ -2,9 +2,9 @@ FROM alpine:3.4
RUN \
apk update && apk upgrade && \
apk add \
apk add --no-cache \
binutils \
gummiboot \
mtools \
xorriso \
gummiboot \
&& rm -rf /var/cache/apk/*
&& true