Docker Image for python apps with alpine linux and dependencies for postgresql, pillow and lxml
50K+
Docker Image for python/django apps with alpine linux and dependencies for postgresql, pillow, lxml and fii
FROM lgatica/python-alpine:3-onbuild
# replace this with your application's default port
EXPOSE 8000
CMD [ "python", "app.py" ]
You can then build and run the Docker image:
docker build -t my-python-app .
docker run -it --rm --name my-running-app my-python-app
The image assumes that your application has a file named package.json listing its dependencies and defining its start script.
Content type
Image
Digest
Size
92.3 MB
Last updated
almost 9 years ago
docker pull lgatica/python-alpine