Skip to content
This repository was archived by the owner on Oct 28, 2024. It is now read-only.

Commit 92fb251

Browse files
authored
Merge pull request #1482 from vdice/chore/update-spin-up-usage
chore(*): bump spin and update usage
2 parents 55b2369 + f081d96 commit 92fb251

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ARG BINDLE_VERSION="v0.8.0"
1818
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/
1919

2020
# Install spin
21-
ARG SPIN_VERSION="v0.2.0"
21+
ARG SPIN_VERSION="v0.10.0"
2222
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/
2323

2424
# Install Rust

.github/release-image/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ ARG BINDLE_VERSION="v0.8.0"
4343
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
4444

4545
# Install spin
46-
ARG SPIN_VERSION="v0.2.0"
47-
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
46+
ARG SPIN_VERSION="v0.10.0"
47+
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
4848

4949
# Install Rust
5050
RUN su ${USER} -c "mkdir rust && cd rust && curl -fsSLo install_rust.sh https://sh.rustup.rs && chmod +x ./install_rust.sh && ./install_rust.sh -y -t wasm32-wasi && cd - && rm -r rust"

src/Infrastructure/Services/NomadJobService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ private Fermyon.Nomad.Model.Task GenerateJobTask(NomadJob nomadJob)
191191
Config = new Dictionary<string, object>
192192
{
193193
{ "command", nomadJob.spinBinaryPath },
194-
{ "args", new List<string> { "up", "--listen", "${NOMAD_ADDR_http}", "--follow-all", "--bindle", nomadJob.BindleId } }
194+
{ "args", new List<string> { "up", "--listen", "${NOMAD_ADDR_http}", "--bindle", nomadJob.BindleId } }
195195
}
196196
};
197197
}

0 commit comments

Comments
 (0)