Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoura committed Aug 29, 2024
1 parent e96c129 commit 9ab1f45
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ ARG FOUNDRY_NIGHTLY_VERSION
RUN <<EOF
set -e
URL=https://github.com/foundry-rs/foundry/releases/download
VERSION=nightly-626221f5ef44b4af950a08e09bd714650d9eb77d
VERSION=nightly-${FOUNDRY_NIGHTLY_VERSION}
ARCH=$(dpkg --print-architecture)
ARTIFACT=foundry_nightly_linux_${ARCH}.tar.gz
curl -sSL ${URL}/${VERSION}/${ARTIFACT} | tar -zx -C /usr/local/bin
Expand All @@ -223,6 +223,7 @@ EOF

FROM devnet-base AS devnet-builder
ARG DEVNET_BUILD_PATH
ARG PNPM_VERSION
WORKDIR ${DEVNET_BUILD_PATH}

# Install gnupg (setup).
Expand All @@ -242,7 +243,8 @@ RUN <<EOF
EOF

# Install pnpm.
RUN npm install -g @pnpm/exe
# RUN npm install -g @pnpm/exe
RUN curl -fsSL https://get.pnpm.io/install.sh | ENV="$HOME/.bashrc" PNPM_VERSION=${PNPM_VERSION} SHELL="$(which bash)" bash -

# Install Go.
ARG GO_VERSION
Expand Down
1 change: 1 addition & 0 deletions build/docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ target "common" {
RUST_VERSION = "1.78.0"
GO_VERSION = "1.22.1"
FOUNDRY_NIGHTLY_VERSION = "626221f5ef44b4af950a08e09bd714650d9eb77d"
PNPM_VERSION = "v9.6.0"
MACHINE_EMULATOR_VERSION = "0.18.1"
MACHINE_TOOLS_VERSION = "0.16.1"
MACHINE_IMAGE_KERNEL_VERSION = "0.20.0"
Expand Down

0 comments on commit 9ab1f45

Please sign in to comment.