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

     1  # Copyright 2022 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  FROM {{REPO}}/linux-x86-sid:20221109
     6  LABEL maintainer="golang-dev@googlegroups.com"
     7  
     8  ENV DEBIAN_FRONTEND noninteractive
     9  
    10  # A copy of https://deb.nodesource.com/setup_18.x.
    11  COPY setup_18.x setup_18.x
    12  
    13  RUN bash setup_18.x && \
    14      apt-get install -y nodejs && \
    15      rm -rf setup_18.x /var/lib/apt/lists/*
    16  
    17  CMD ["/usr/local/bin/stage0"]