# Ubuntu
							 | 
						|
								FROM ubuntu:bionic
							 | 
						|
								ENV UNAME="data-science"
							 | 
						|
								MAINTAINER gmarxcc
							 | 
						|
								LABEL version="0.1"
							 | 
						|
								ARG DEBIAN_FRONTEND=noninteractive
							 | 
						|
								ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
							 | 
						|
								
							 | 
						|
								RUN apt-get update \
							 | 
						|
								&& apt-get install -y python3
							 |