From e3b2d08021e1c8bfa01c886a547995311949bf33 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Mon, 20 Aug 2018 21:04:10 -0500 Subject: [PATCH] Update dockerfile --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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