Jamal Carvalho | 769f579 | 2022-01-07 19:26:13 +0000 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # Copyright 2022 The Go Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style |
| 4 | # license that can be found in the LICENSE file. |
| 5 | |
| 6 | docker run \ |
| 7 | --rm \ |
| 8 | --volume $(pwd):/workspace \ |
| 9 | --workdir /workspace \ |
Jamal Carvalho | 6f4aa0e | 2022-01-11 17:56:41 +0000 | [diff] [blame] | 10 | --env NODE_OPTIONS="--experimental-vm-modules --no-warnings" \ |
Jamal Carvalho | 769f579 | 2022-01-07 19:26:13 +0000 | [diff] [blame] | 11 | --entrypoint npx \ |
| 12 | node:16.13.1-alpine3.14 \ |
| 13 | $@ |