workflow
Some checks failed
Build Docker Image / build (push) Failing after 1m34s

This commit is contained in:
Matt Avery 2025-06-24 22:15:58 -04:00
parent 1c6e83996c
commit 722b301a89

View File

@ -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 \