Sign inSign up

hersonpc/python

By hersonpc

Updated over 3 years ago

Docker container for Python projects

Image
0

323

hersonpc/python repository overview

Docker container for Python projects

These are my Docker images, for deploying and distributing apps with Python based code.

https://github.com/hersonpc/python

How to use this image

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" ]

Supported architectures

  • Linux x86-64 (amd64)
  • ARMv8 64-bit (arm64v8)

Tags

By python version:
By context:

Tag summary

Content type

Image

Digest

sha256:7e4055921

Size

388.2 MB

Last updated

over 3 years ago

docker pull hersonpc/python:3.11-oracle