mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 12:42:19 +00:00
13 lines
325 B
Bash
Executable File
13 lines
325 B
Bash
Executable File
#! /bin/bash
|
|
# Copyright 2022 The Kubernetes Authors.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
IMAGE_LABEL="tshirt_example_build:latest"
|
|
BUILD_HOME=/usr/local/build
|
|
|
|
docker build -t $IMAGE_LABEL .
|
|
|
|
docker run --rm -v $(pwd):/out $IMAGE_LABEL \
|
|
cp -r $BUILD_HOME/functions/examples/injection-tshirt-sizes/image/tshirt /out
|