mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
8 lines
244 B
Bash
Executable File
8 lines
244 B
Bash
Executable File
#! /bin/bash
|
|
|
|
IMAGE_LABEL="label_namespace_build:latest"
|
|
BUILD_HOME=/usr/local/build
|
|
|
|
docker build -t $IMAGE_LABEL .
|
|
|
|
docker run --rm -v $(pwd):/out $IMAGE_LABEL cp -r $BUILD_HOME/ts/hello-world/dist $BUILD_HOME/ts/hello-world/node_modules /out |