pgweb/Dockerfile

17 lines
510 B
Docker
Raw Normal View History

2017-08-10 07:11:30 +03:00
FROM alpine:3.6
MAINTAINER Dan Sosedoff <dan.sosedoff@gmail.com>
2014-10-28 11:02:27 +03:00
2017-12-08 08:06:28 +03:00
ENV PGWEB_VERSION 0.9.11
2014-10-28 11:02:27 +03:00
RUN \
apk update && \
2017-08-10 07:11:30 +03:00
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 && \
unzip pgweb_linux_amd64.zip -d /usr/bin && \
mv /usr/bin/pgweb_linux_amd64 /usr/bin/pgweb && \
rm -f pgweb_linux_amd64.zip
2014-10-28 11:02:27 +03:00
2015-07-15 06:26:32 +03:00
EXPOSE 8081
CMD ["/usr/bin/pgweb", "--bind=0.0.0.0", "--listen=8081"]