File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM minio/mc:RELEASE.2020-07-17T02-52-20Z as mc
2-
31FROM postgres:13-alpine
42
53COPY rootfs /
6- COPY --from=mc /usr/bin/mc /bin/mc
74
85ENV PGDATA $PGDATA/$PG_MAJOR
96ENV WALG_ENVDIR /etc/wal-g.d/env
107ADD https://github.com/wal-g/wal-g/releases/download/v0.2.16/wal-g.linux-amd64.tar.gz /bin
118
12- RUN mkdir -p $WALG_ENVDIR \
9+ RUN wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /bin/mc \
10+ && chmod +x /bin/mc \
11+ && mkdir -p $WALG_ENVDIR \
1312 && tar -xvzf /bin/wal-g.linux-amd64.tar.gz -C /bin && rm /bin/wal-g.linux-amd64.tar.gz \
1413 && wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.31-r0/glibc-2.31-r0.apk \
15- && apk add --allow-untrusted glibc-2.31-r0.apk \
16- && rm glibc-2.31-r0.apk \
14+ && apk add --allow-untrusted glibc-2.31-r0.apk \
15+ && rm glibc-2.31-r0.apk \
1716 && apk add --no-cache jq python3 curl \
1817 && curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
1918 && python3 get-pip.py \
You can’t perform that action at this time.
0 commit comments