Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM golang:alpine AS builder
ARG TARGETOS
ARG TARGETARCH

ENV WALG_VERSION=release-v2023.11.30
ENV WALG_VERSION="release-v2023.11.30"

ENV _build_deps="wget cmake git build-base bash curl xz-dev lzo-dev"

Expand All @@ -18,7 +18,7 @@ RUN set -ex \
RUN set -x \
&& git clone https://github.com/kubedb/wal-g.git \
&& cd wal-g \
&& git checkout kubedb-v2023.11.30\
&& git checkout $(WALG_VERSION) \
&& CGO_ENABLED=0 go build -v -o /wal-g ./main/pg/main.go

FROM alpine
Expand Down