Skip to content

This Data contains around 25k images of size 150-150 distributed under 6 categories This data was initially published on Intel to host an Image classification Challenge.

Notifications You must be signed in to change notification settings

Kushagratandon12/Intel_Image-Classification

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker System Setup

Create A File Named As Dockerfile without an extension

FROM python:3.8-slim-buster

COPY . /app  
WORKDIR /app

#Docker - Linux System Dependencies Install -- 
RUN apt-get update

RUN pip install -r requirements.txt

EXPOSE 5000
ENTRYPOINT [ "python" ]
CMD [ "app.py" ]

Build The Image For Docker

sudo docker build --tag <docker_name>

After The Build Is Complete Start The Docker Container

sudo docker run -p 5000:5000 --detach <docker_name>

Push The Docker Container To Docker Hub

docker login
docker container ls -a #will show the docker container with the tag 

Docker%20System%20Setup%200848c02415484e869b341156965daa3c/Untitled.png

docker tag ceciphillip:awesomeapp <your_dockerhub_id>/<docker_hub_repo_name>
docker images ls 
docker push <your_dockerhub_id>/<docker_hub_repo_name>

Releases

No releases published

Packages

No packages published