blob: 95f7a0104a0e2cc059fccf9abd9a7c69e7722826 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
# Copyright 2020 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
set -e
# Script for running a nodejs docker image.
docker run --net=host --rm -v `pwd`:/pkgsite -w /pkgsite node:15.14.0 $@
|