Skip to content

danielefundaro/hypercorn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hypercorn

Docker build

Docker image with hypercorn ASGI and python 3.9.11 that you can use as a base image for your project. Define your Dockerfile as shown below:

FROM hypercorn:latest

# install dependecies
COPY ./requirements.txt ./requirements.txt
RUN pip install -r requirements.txt

# copies the entire project folder, containing the main application
COPY ./app ./app

# expose port
EXPOSE 8000

ENTRYPOINT ["hypercorn", "-b", "0.0.0.0:8000", "./app/main:app"]

About

This is a simple definition of the docker image hypercorn, to build your own python ASGI server

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published