Skip to content

Instantly share code, notes, and snippets.

View source-nerd's full-sized avatar

Sam source-nerd

View GitHub Profile
@source-nerd
source-nerd / Ubuntu 18.04 Docker File
Created May 25, 2018 05:23
Docker Image for Ubuntu 18.04 and Python 3.6
FROM ubuntu:18.04
RUN apt-get update
RUN apt-get install -y build-essential
# This will install Python, pip, pip3, and pip3.6.
RUN curl https://bootstrap.pypa.io/ez_setup.py -o - | python3.6 && python3.6 -m easy_install pip
RUN apt-get update
RUN apt-get install -y python3.6-venv