diff --git a/Dockerfile b/Dockerfile index 4eebc59..594f926 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,11 @@ LABEL maintainer="Dan Sosedoff " ENV PGWEB_VERSION 0.9.12 RUN \ - apk add --no-cache ca-certificates openssl postgresql && \ - update-ca-certificates && \ + apk update && \ + apk add --no-cache ca-certificates openssl postgresql wget && \ + update-ca-certificates \ cd /tmp && \ - wget https://github.com/sosedoff/pgweb/releases/download/v$PGWEB_VERSION/pgweb_linux_amd64.zip && \ + wget -q https://github.com/sosedoff/pgweb/releases/download/v$PGWEB_VERSION/pgweb_linux_amd64.zip && \ unzip pgweb_linux_amd64.zip -d /usr/bin && \ mv /usr/bin/pgweb_linux_amd64 /usr/bin/pgweb && \ rm -f pgweb_linux_amd64.zip