mirror of
https://git.koehn.com/docker/postgres-wal-g.git
synced 2023-10-20 22:33:52 -05:00
make apt-get update less quiet
This commit is contained in:
+2
-2
@@ -4,7 +4,7 @@ FROM golang:1 as build
|
||||
|
||||
ARG WALG_RELEASE=v1.1
|
||||
|
||||
RUN apt-get update -qq && apt-get install -qqy --no-install-recommends --no-install-suggests cmake liblzo2-dev libsodium23 libsodium-dev && \
|
||||
RUN apt-get update && apt-get install -qqy --no-install-recommends --no-install-suggests cmake liblzo2-dev libsodium23 libsodium-dev && \
|
||||
cd /go/src/ && \
|
||||
git clone -b $WALG_RELEASE --recurse-submodules https://github.com/wal-g/wal-g.git && \
|
||||
cd wal-g && \
|
||||
@@ -15,7 +15,7 @@ FROM postgres:$BASE
|
||||
|
||||
|
||||
RUN export DEBIAN_FRONTEND=noninteractive && \
|
||||
apt-get update -qq && \
|
||||
apt-get update && \
|
||||
apt-get install -qqy curl ca-certificates libsodium23 vim
|
||||
|
||||
COPY --from=build /go/src/wal-g/main/pg/wal-g /usr/local/bin/wal-g
|
||||
|
||||
Reference in New Issue
Block a user