mirror of
https://github.com/boostorg/release-tools.git
synced 2026-01-20 17:12:10 +00:00
7 lines
241 B
Bash
Executable File
7 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# update the image name as necessary.
|
|
imagename="cppalliance/boost_superproject_build:24.04-v3"
|
|
# docker build --progress=plain -t $imagename . 2>&1 | tee /tmp/output.txt
|
|
docker build -t $imagename . 2>&1 | tee /tmp/output2.txt
|