Skip to content

Commit

Permalink
pin docker pnpm to 8.10.4
Browse files Browse the repository at this point in the history
latest pnpm download script is currently broken:
pnpm/pnpm#7336
  • Loading branch information
jacksonrnewhouse committed Nov 21, 2023
1 parent e21c079 commit d28809a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/cluster/services/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN apt-get update && \
mv bin/protoc /usr/local/bin && \
curl -fsSL https://deb.nodesource.com/setup_19.x | sudo -E bash - && \
sudo apt-get install -y nodejs && \
curl -fsSL https://get.pnpm.io/install.sh | SHELL=$(which bash) bash -
curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=8.10.4 SHELL=$(which bash) bash -

COPY Cargo.toml Cargo.toml
COPY Cargo.lock Cargo.lock
Expand Down
2 changes: 1 addition & 1 deletion docker/single/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN cargo install refinery_cli
# Install pnpm
RUN curl -fsSL https://deb.nodesource.com/setup_19.x | sudo -E bash - && \
sudo apt-get install -y nodejs && \
curl -fsSL https://get.pnpm.io/install.sh | SHELL=$(which bash) bash -
curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=8.10.4 SHELL=$(which bash) bash -

COPY arroyo-types arroyo-types
COPY arroyo-worker arroyo-worker
Expand Down

0 comments on commit d28809a

Please sign in to comment.