9 lines
214 B
Bash
Executable File
9 lines
214 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
export LC_ALL=C
|
|
cd /mnt/host
|
|
|
|
apt -o "Acquire::https::Verify-Peer=false" update
|
|
# Install packages
|
|
apt -o "Acquire::https::Verify-Peer=false" install -y scons build-essential libssl-dev python3-dev
|