config_default_amd64.go 431 B

1234567891011121314151617181920
  1. //go:build linux && amd64
  2. package static
  3. var DEFAULT_PYTHON_LIB_REQUIREMENTS = []string{
  4. "/usr/local/lib/python3.10",
  5. "/usr/lib/python3.10",
  6. "/usr/lib/python3",
  7. "/usr/lib/x86_64-linux-gnu",
  8. "/etc/ssl/certs/ca-certificates.crt",
  9. "/etc/nsswitch.conf",
  10. "/etc/hosts",
  11. "/etc/resolv.conf",
  12. "/run/systemd/resolve/stub-resolv.conf",
  13. "/run/resolvconf/resolv.conf",
  14. "/etc/localtime",
  15. "/usr/share/zoneinfo",
  16. "/etc/timezone",
  17. }