mirror of https://github.com/thesofproject/sof.git
8 lines
226 B
Bash
8 lines
226 B
Bash
|
#!/bin/bash
|
||
|
if [ -f "/etc/apt/apt.conf" ]; then
|
||
|
cp /etc/apt/apt.conf ./
|
||
|
else
|
||
|
touch apt.conf
|
||
|
fi
|
||
|
docker build --build-arg UID=$(id -u) --build-arg host_http_proxy=$http_proxy --build-arg host_https_proxy=$https_proxy -t sof .
|