Skip to content

Commit

Permalink
Fix runtime Dockerfile (denismakogon#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
MasashiYokota authored and denismakogon committed Jan 27, 2019
1 parent 3254b73 commit 8d5defc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions runtime/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ ENV PKG="libstdc++ \
RUN apk update && \
apk upgrade && \
apk add --no-cache ${PKG} && \
wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.28-r0/sgerrand.rsa.pub && \
# The gblic v2.28-r0 doesn't have sgerrand.rsa.pub.
# Downloading it from previous version.
wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.27-r0/sgerrand.rsa.pub && \
wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.28-r0/glibc-2.28-r0.apk && \
apk add --no-cache glibc-2.28-r0.apk && \
apk add --no-cache glibc-2.28-r0.apk && \
rm -fr /glibc-2.28-r0.apk && \
rm -rf /var/cache/apk/* && \
apk del wget
Expand Down

0 comments on commit 8d5defc

Please sign in to comment.