golang.org/x/build@v0.0.0-20240506185731-218518f32b70/env/js-wasm/Dockerfile (about) 1 # Copyright 2018 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:latest 6 MAINTAINER golang-dev <golang-dev@googlegroups.com> 7 8 ENV DEBIAN_FRONTEND noninteractive 9 10 # A copy of https://deb.nodesource.com/setup_14.x. 11 COPY setup_14.x setup_14.x 12 13 RUN bash setup_14.x && \ 14 apt-get install -y nodejs && \ 15 rm -rf setup_14.x /var/lib/apt/lists/* 16 17 CMD ["/usr/local/bin/stage0"]