Skip to content

Commit 1f8d7b2

Browse files
committed
Docker: fix path to litestream
1 parent e196f26 commit 1f8d7b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ENV LITESTREAM_VERSION=v0.3.13
66
RUN apt update && \
77
apt install -y curl && \
88
TARGETARCH=$([ "$TARGETARCH" = "aarch64" ] && echo "arm64" || echo "$TARGETARCH"); \
9-
curl -f -L https://github.com/benbjohnson/litestream/releases/download/${LITESTREAM_VERSION}/litestream-${LITESTREAM_VERSION}-linux-${TARGETARCH}-static.tar.gz -o /litestream.tar.gz ; \
9+
curl -f -L https://github.com/benbjohnson/litestream/releases/download/${LITESTREAM_VERSION}/litestream-${LITESTREAM_VERSION}-linux-${TARGETARCH}.tar.gz -o /litestream.tar.gz ; \
1010
mkdir -p /litestream && \
1111
tar -xzf /litestream.tar.gz -C /litestream
1212

0 commit comments

Comments
 (0)