From a9efb88fe2fe02e32b9676aff1aeb45962973854 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Wed, 9 Aug 2017 23:11:30 -0500 Subject: [PATCH] Use alpine:3.6 as a docker base image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5cfb97b..ade49c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM alpine:3.3 +FROM alpine:3.6 MAINTAINER Dan Sosedoff ENV PGWEB_VERSION 0.9.8 RUN \ apk update && \ - apk add ca-certificates && \ + apk add --update ca-certificates openssl && \ update-ca-certificates && \ cd /tmp && \ wget https://github.com/sosedoff/pgweb/releases/download/v$PGWEB_VERSION/pgweb_linux_amd64.zip && \