You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-whoami/build.sh

9 lines
209 B

#!/bin/bash
docker build -t httpbuild -f Dockerfile.build .
docker rm -f httpbuild
docker create --name httpbuild httpbuild
rm -rf tmp
mkdir tmp
docker cp httpbuild:/code/http.exe tmp
docker build -t whoami .