install python using pip dockerfile code example
Example 1: install python in dockerfile
RUN apt-get update
RUN apt-get install python
Example 2: install pip dockerfile
FROM ubuntu:14.04
# Install dependencies
RUN apt-get update && apt-get install -y python-pip