https://github.com/hardbyte/python3-app-docker
A docker machine configured for Python 3 applications
https://github.com/hardbyte/python3-app-docker
Last synced: 2 months ago
JSON representation
A docker machine configured for Python 3 applications
- Host: GitHub
- URL: https://github.com/hardbyte/python3-app-docker
- Owner: hardbyte
- Created: 2014-06-16T03:45:47.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2015-04-09T04:07:27.000Z (almost 11 years ago)
- Last Synced: 2025-06-08T06:04:50.532Z (10 months ago)
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Inspired by [google/python-runtime][1] this docker image makes it easy to deploy a standard Python 3 application.
Unlike Google's Docker image this inherits from Ubuntu.
Similar notes to python-runtime, just make a `Dockerfile`:
FROM hardbyte/python3-app
- Expects a `requirements.txt` file
- assumes your app listens on port 8080
- either has a `main.py` or defines `ENTRYPOINT`:
```ENTRYPOINT: ["/env/bin/python/", "/app/other.py"]```
[1]: https://registry.hub.docker.com/u/google/python-runtime/%20google/python-runtime