Skip to content

Commit

Permalink
fix: upgrade lz4 and go
Browse files Browse the repository at this point in the history
  • Loading branch information
Chomtana committed Jan 29, 2024
1 parent 300068f commit ce5dafc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker/dockerfiles/Dockerfile.bedrock-init
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:23.10

# Disable prompts during package installation.
ARG DEBIAN_FRONTEND=noninteractive
Expand All @@ -7,7 +7,7 @@ ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt install -y curl wget git rsync build-essential openssl python3 python3-pip aria2 zstd lz4

# Install Go.
RUN curl -sSL https://golang.org/dl/go1.19.5.linux-amd64.tar.gz | tar -v -C /usr/local -xz
RUN curl -sSL https://golang.org/dl/go1.21.6.linux-amd64.tar.gz | tar -v -C /usr/local -xz
RUN cp /usr/local/go/bin/go /usr/bin/go

# Install Foundry.
Expand Down
2 changes: 1 addition & 1 deletion scripts/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function extractzst() {
# loc: Location to extract to.
function extractlz4() {
mkdir -p $2
tar --use-compress-program=lz4 -xf $1 -C $2
tar --use-compress-program="lz4 --no-crc" -xf $1 -C $2
}

# download: Downloads a file and provides basic progress percentages.
Expand Down

0 comments on commit ce5dafc

Please sign in to comment.