mirror of
https://github.com/bilde2910/Hauk.git
synced 2026-01-23 02:24:09 +00:00
Remove jq as it is no longer needed, and add warnings to the Dockerfiles meant for Docker Hub.
8 lines
234 B
Bash
Executable file
8 lines
234 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Set up QEMU for cross compilation
|
|
apt -y update
|
|
apt -y --only-upgrade install docker-ee
|
|
apt -y install qemu-user-static
|
|
cp /usr/bin/qemu-*-static .
|
|
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|