docker hub 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: what is hub
A hub is a server or a central point
(Point of Contact) that controls the
test executions on different machines.
Example 5: docker scikit
FROM python:3.6-slim
WORKDIR /app
ADD . /app
RUN pip install -r requirements.txt
ENV NAME World
EXPOSE 5003
CMD ["python", "app.py"]
Flask==1.0
numpy
scipy
scikit-learn
pandas