blob: 2213b19c3e9e734acdb84d338c1084e8fd85ec45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
from ghcr.io/void-linux/void-glibc-full
# update package manager (needs to be separate)
run xbps-install -Syu xbps
# update entire system
run xbps-install -Syu
# packages (in separate steps to optimize caching)
run xbps-install -Sy cross-arm-linux-gnueabihf
run xbps-install -Sy gcc
run xbps-install -Sy make
run xbps-install -Sy git
run xbps-install -Sy flex
run xbps-install -Sy openssl-devel
run xbps-install -Sy bc
run xbps-install -Sy cpio
run xbps-install -Sy xz
run xbps-install -Sy lz4
# # temp:
# run xbps-install -Sy ncurses-devel
# container directory on which the working directory on host is mounted
workdir /workdir
|