Created
July 24, 2019 10:20
-
-
Save ashwnacharya/65fa6c931660800c16647bb109d07ed5 to your computer and use it in GitHub Desktop.
minimal python3 docker image using buildroot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BR2_x86_64=y | |
BR2_SHARED_STATIC_LIBS=y | |
BR2_TOOLCHAIN_BUILDROOT_GLIBC=y | |
BR2_BINUTILS_VERSION_2_31_X=y | |
BR2_GCC_VERSION_8_X=y | |
BR2_TOOLCHAIN_BUILDROOT_CXX=y | |
BR2_INIT_NONE=y | |
BR2_SYSTEM_BIN_SH_BASH=y | |
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y | |
BR2_PACKAGE_BUSYBOX_SELINUX=y | |
BR2_PACKAGE_BUSYBOX_INDIVIDUAL_BINARIES=y | |
BR2_PACKAGE_MAKE=y | |
BR2_PACKAGE_PYTHON3=y | |
BR2_PACKAGE_PYTHON3_PY_PYC=y | |
BR2_PACKAGE_PYTHON_PIP=y | |
BR2_PACKAGE_SUDO=y | |
BR2_PACKAGE_TIME=y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment