Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
correctly specify a fixed version (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
ennru authored May 15, 2023
1 parent 07534bb commit 57e8b08
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ COPY entrypoint.sh /entrypoint.sh
RUN apk update &&\
apk add curl &&\
rm -rf /var/lib/apt/lists/* &&\
wget https://downloads.kalix.io/2.0.19/kalix_linux_amd64.tar.gz &&\
tar xzf kalix_linux_amd64.tar.gz &&\
VERSION="2.0.19" &&\
wget https://downloads.kalix.io/${VERSION}/kalix_linux_amd64_${VERSION}.tar.gz &&\
tar xzf kalix_linux_amd64_${VERSION}.tar.gz &&\
mv kalix /bin

## Set the entry point when the container starts
Expand Down

0 comments on commit 57e8b08

Please sign in to comment.