Skip to content

Commit

Permalink
use versioned binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
FoseFx committed Aug 19, 2024
1 parent 3af74a5 commit e416dbd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions images/dev-go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@ RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | d

# install zed, CLI for SpiceDB
# https://github.com/authzed/zed
RUN curl https://apt.fury.io/authzed/gpg.key | apt-key add - \
&& echo "deb https://apt.fury.io/authzed/ * *" > /etc/apt/sources.list.d/fury.list \
&& apt update \
&& apt install -y zed
# renovate: datasource=github-releases depName=authzed/zed
ENV ZED_VERSION=0.20.0
RUN wget https://github.com/authzed/zed/releases/download/v${ZED_VERSION}/zed_${ZED_VERSION}_linux_amd64.deb -O zed.deb \
&& apt install -y ./zed.deb \
&& rm zed.deb

RUN apt-get clean autoclean && apt-get autoremove -y && rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit e416dbd

Please sign in to comment.