Merge pull request #256 from sosedoff/docker-alpine-3.6

Use alpine:3.6 as a docker base image
This commit is contained in:
Dan Sosedoff 2017-09-13 23:36:33 -05:00 committed by GitHub
commit 7832b5b8b8

View File

@ -1,11 +1,11 @@
FROM alpine:3.3
FROM alpine:3.6
MAINTAINER Dan Sosedoff <dan.sosedoff@gmail.com>
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 && \