Skip to content

Commit

Permalink
Merge pull request #1483 from vdice/chore/bump-spin-v0.10.1
Browse files Browse the repository at this point in the history
chore(Dockerfile): bump spin to v0.10.1
  • Loading branch information
vdice committed Mar 8, 2023
2 parents 92fb251 + 0abe5ee commit 415a76c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG BINDLE_VERSION="v0.8.0"
RUN curl -fsSLo bindle.tar.gz https://bindle.blob.core.windows.net/releases/bindle-${BINDLE_VERSION}-linux-amd64.tar.gz && tar -xvf bindle.tar.gz && mv bindle bindle-server /usr/local/bin/

# Install spin
ARG SPIN_VERSION="v0.10.0"
ARG SPIN_VERSION="v0.10.1"
RUN curl -fsSLo spin.tar.gz https://github.com/fermyon/spin/releases/download/${SPIN_VERSION}/spin-${SPIN_VERSION}-linux-amd64.tar.gz && tar -xvf spin.tar.gz && mv spin /usr/local/bin/

# Install Rust
Expand Down
2 changes: 1 addition & 1 deletion .github/release-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ARG BINDLE_VERSION="v0.8.0"
RUN mkdir bindle && cd bindle && curl -fsSLo bindle.tar.gz https://bindle.blob.core.windows.net/releases/bindle-${BINDLE_VERSION}-linux-amd64.tar.gz && tar -xvf bindle.tar.gz && mv bindle bindle-server README.md LICENSE.txt /usr/local/bin/ && cd - && rm -r bindle

# Install spin
ARG SPIN_VERSION="v0.10.0"
ARG SPIN_VERSION="v0.10.1"
RUN mkdir spin && cd spin && curl -fsSLo spin.tar.gz https://github.com/fermyon/spin/releases/download/${SPIN_VERSION}/spin-${SPIN_VERSION}-linux-amd64.tar.gz && tar -xvf spin.tar.gz && mv spin README.md LICENSE /usr/local/bin/ && cd - && rm -r spin

# Install Rust
Expand Down

0 comments on commit 415a76c

Please sign in to comment.