dockerhub code example

Example 1: pushing image to docker hub

docker push yourhubusername/verse_gapminder

Example 2: push image to docker hub

$ docker push <hub-user>/<repo-name>:<tag>

Example 3: doker images

docker images [OPTIONS] [REPOSITORY[:TAG]]

Example 4: docker scikit

# Use an official Python runtime as a parent image
FROM python:3.6-slim

# Set the working directory to /app
WORKDIR /app

# Copy the current directory contents into the container at /app
ADD . /app

# Install any needed packages specified in requirements.txt
RUN pip install -r requirements.txt

# Define environment variable
ENV NAME World

EXPOSE 5003 

# Run app.py when the container launches
CMD ["python", "app.py"]

# requirements.txt
Flask==1.0
numpy
scipy
scikit-learn
pandas