diff --git a/Dockerfile b/Dockerfile index 410f63a..23962c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,20 +1,9 @@ FROM golang:1-alpine AS builder ENV WALG_VERSION=v3.0.7 -ENV BROTLI_VERSION=v1.1.0 RUN set -ex \ - && apk add --no-cache wget cmake git build-base bash - -RUN set -ex \ - && cd /tmp \ - && wget -qO - https://github.com/google/brotli/archive/${BROTLI_VERSION}.tar.gz | tar xz -f '-' \ - && cd brotli* \ - && mkdir out \ - && cd out \ - && ../configure-cmake --disable-debug \ - && make \ - && make install + && apk add --no-cache wget git build-base bash brotli-dev RUN set -ex \ && git clone https://github.com/wal-g/wal-g/ $GOPATH/src/wal-g \