add Dockerfile and related scripts

This commit is contained in:
ruzo
2024-09-18 20:13:02 +03:00
committed by Povilas Kanapickas
parent 122a914b9b
commit 69e95be2f6
4 changed files with 109 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#!/bin/sh
# Delete repository dir
rm -rf podman-compose-src
# Clone repository
git clone https://github.com/containers/podman-compose podman-compose-src
# Generate binary
sh podman-compose-src/scripts/generate_binary_using_dockerfile.sh
# Move binary outside repo's dir
mv podman-compose-src/podman-compose .
# Delete repository dir
rm -rf podman-compose-src