golang.org/x/build@v0.0.0-20240506185731-218518f32b70/env/wasip1-wasm-wazero/Dockerfile (about)

     1  # Copyright 2023 The Go Authors. All rights reserved.
     2  # Use of this source code is governed by a BSD-style
     3  # license that can be found in the LICENSE file.
     4  
     5  ARG REPO
     6  
     7  FROM golang:latest as builder
     8  LABEL maintainer="golang-dev@googlegroups.com"
     9  
    10  RUN go install github.com/tetratelabs/wazero/cmd/wazero@v1.3.1
    11  
    12  FROM ${REPO}/linux-x86-sid:20221109
    13  
    14  COPY --from=builder /go/bin/wazero /usr/local/bin/wazero
    15  
    16  CMD ["/usr/local/bin/stage0"]