Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ jobs:
--label org.opencontainers.image.vendor="Componentized <https://github.com/componentized>" \
--label org.opencontainers.image.version="${{ inputs.tag }}" \
--label org.opencontainers.image.url="${{ github.server_url }}/${{ github.repository }}" \
--sbom=true \
.

mkdir "wasmtime-${{ inputs.tag }}-${{ matrix.arch }}"
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@ RUN \
apt-get update ; \
apt-get install gcc-$(arch | tr _ -)-linux-gnu musl-tools -y ; \
rustup target add $(arch)-unknown-linux-musl ; \
cargo install --locked cargo-auditable ; \
if [ "${wasmtime_crate}" = "" ] ; then \
cargo install \
cargo auditable install \
--target "$(arch)-unknown-linux-musl" \
--git https://github.com/bytecodealliance/wasmtime.git \
--rev "${wasmtime_git_rev}" \
--locked \
wasmtime-cli \
; \
else \
cargo install \
cargo auditable install \
--target "$(arch)-unknown-linux-musl" \
--locked \
wasmtime-cli@${wasmtime_crate} \
Expand Down