1234567891011121314151617181920 |
- //go:build linux && arm64
- package static
- var DEFAULT_PYTHON_LIB_REQUIREMENTS = []string{
- "/usr/local/lib/python3.10",
- "/usr/lib/python3.10",
- "/usr/lib/python3",
- "/usr/lib/aarch64-linux-gnu",
- "/etc/ssl/certs/ca-certificates.crt",
- "/etc/nsswitch.conf",
- "/etc/hosts",
- "/etc/resolv.conf",
- "/run/systemd/resolve/stub-resolv.conf",
- "/run/resolvconf/resolv.conf",
- "/etc/localtime",
- "/usr/share/zoneinfo",
- "/etc/timezone",
- }
|