These are my Docker images, for deploying and distributing apps with Python based code.
https://github.com/hersonpc/python
You can create a Dockerfile in your Python app project
FROM hersonpc/python:3.11-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./script-name.py" ]
Python 3.11
Python 3.10
Django Framework
Oracle
Slim
Content type
Image
Digest
sha256:7e4055921…
Size
388.2 MB
Last updated
over 3 years ago
docker pull hersonpc/python:3.11-oracle