modongsongrio / alpine-machine-learning-base

Container to easy build stuffs for Python in another containers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

  ___  _       _                            
 / _ \| |     (_)                           
/ /_\ \ |_ __  _ _ __   ___                 
|  _  | | '_ \| | '_ \ / _ \                
| | | | | |_) | | | | |  __/                
\_| |_/_| .__/|_|_| |_|\___|                
        | |                                 
        |_|                                 
___  ___           _     _                  
|  \/  |          | |   (_)                 
| .  . | __ _  ___| |__  _ _ __   ___       
| |\/| |/ _` |/ __| '_ \| | '_ \ / _ \      
| |  | | (_| | (__| | | | | | | |  __/      
\_|  |_/\__,_|\___|_| |_|_|_| |_|\___|      
                                            
                                            
 _                           _              
| |                         (_)             
| |     ___  __ _ _ __ _ __  _ _ __   __ _  
| |    / _ \/ _` | '__| '_ \| | '_ \ / _` | 
| |___|  __/ (_| | |  | | | | | | | | (_| | 
\_____/\___|\__,_|_|  |_| |_|_|_| |_|\__, | 
                                      __/ | 
                                     |___/  

GitHub issues GitHub license Twitter CircleCI


Container to build another containers for Machine Learning.

To reduce the contaner size do:

FROM petronetto/alpine-machine-learning-base
RUN apk del .build-deps \
    && rm /usr/include/xlocale.h \
    && rm -rf /root/.cache \
    && rm -rf /root/.[acpw]* \
    && rm -rf /var/cache/apk/* \
    && find /usr/lib/python3.6 -name __pycache__ | xargs rm -r

About

Container to easy build stuffs for Python in another containers

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dockerfile 100.0%