Skip to content

harryowumi/my-docker-repo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

our base image

FROM alpine:3.5

Install python and pip

RUN apk add --update py2-pip

install Python modules needed by the Python app

COPY requirements.txt /usr/src/app/ RUN pip install --no-cache-dir -r /usr/src/app/requirements.txt

copy files required for the app to run

COPY app.py /usr/src/app/ COPY templates/index.html /usr/src/app/templates/

tell the port number the container should expose

EXPOSE 5000

run the application

CMD ["python", "/usr/src/app/app.py"]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published