GitHub
github.com › docker-library › python
GitHub - docker-library/python: Docker Official Image packaging for Python · GitHub
Docker Official Image packaging for Python. Contribute to docker-library/python development by creating an account on GitHub.
Starred by 2.7K users
Forked by 1.1K users
Languages Dockerfile 50.3% | Shell 49.7%
GitHub
github.com › docker › docker-py
GitHub - docker/docker-py: A Python library for the Docker Engine API · GitHub
A Python library for the Docker Engine API. Contribute to docker/docker-py development by creating an account on GitHub.
Starred by 7.2K users
Forked by 1.7K users
Languages Python
Videos
GitHub
github.com › Kaggle › docker-python
GitHub - Kaggle/docker-python: Kaggle Python docker image · GitHub
Kaggle Python docker image. Contribute to Kaggle/docker-python development by creating an account on GitHub.
Starred by 2.7K users
Forked by 1K users
Languages Python 82.2% | Shell 6.9% | Go Template 4.5% | Dockerfile 3.0% | PureBasic 2.5% | Jupyter Notebook 0.9%
GitHub
github.com › patrickloeber › python-docker-tutorial
GitHub - patrickloeber/python-docker-tutorial: Learn how to dockerize Python scripts and a Python web app · GitHub
Starred by 326 users
Forked by 146 users
Languages Python 75.3% | Dockerfile 24.7%
GitHub
github.com › docker › python-docker
GitHub - docker/python-docker: A simple Python app for the Python Language Guide in Docker's Docs
Starred by 16 users
Forked by 101 users
Languages Python 100.0% | Python 100.0%
GitHub
github.com › bennzhang › docker-demo-with-simple-python-app
GitHub - bennzhang/docker-demo-with-simple-python-app · GitHub
/usr/src/app # Application Environment variables #ENV APP_ENV development ENV PORT 8080 # Exposing Ports EXPOSE $PORT # Setting Persistent data VOLUME ["/app-data"] # Running Python Application CMD gunicorn -b :$PORT -c gunicorn.conf.py main:app · Normally, image name convention is something like: {company/application-name}:{version-number}. In the demo, I just use {application-name}:{version-number} ... $ sudo docker images REPOSITORY TAG IMAGE ID CREATED SIZE my-python-app 1.0.1 2b628d11ba3a 22 minutes ago 701.6 MB docker.io/python 2.7 b1d5c2d7dda8 13 days ago 679.3 MB docker.io/hello-world latest 05a3bd381fc2 5 weeks ago 1.84 kB
Starred by 18 users
Forked by 199 users
Languages Python
DEV Community
dev.to › deepjyoti30 › github-python-and-docker-the-sweet-trio-18bc
Github, Python and Docker: The Sweet Trio - DEV Community
June 9, 2021 - This file needs to follow the GitHub workflow syntax. We can define jobs in the file. Each job can have a few steps that are supposed to be followed. Jobs can be defined in the following way: jobs: # Name of the job push-to-docker: runs-on: ubuntu-latest # Use latest Ubuntu for the steps steps: # Do something - name: Do something
GitHub
github.com › dockerfile › python
GitHub - dockerfile/python: Python Dockerfile for trusted automated Docker builds.
This repository contains Dockerfile of Python for Docker's automated build published to the public Docker Hub Registry.
Starred by 73 users
Forked by 71 users
Languages Shell 100.0% | Shell 100.0%
Docker
docs.docker.com › guides › python › automate your builds with github actions
Automate your builds with GitHub Actions | Docker Docs
If you prefer to use your text editor, create a new file named build.yml in the .github/workflows/ directory of your repository. ... name: Build and push Docker image on: push: branches: - main jobs: lint-test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: python-version: '3.14' - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Run pre-commit hooks run: pre-commit run --all-files - name: Run pyright run: pyright build_and_push: runs-on: ubuntu-latest steps: - name
GitHub
github.com › mozilla › generic-python-docker
GitHub - mozilla/generic-python-docker: An example repo for a generic, dockerized Python project
February 4, 2021 - An example repo for a generic, dockerized Python project - mozilla/generic-python-docker
Starred by 17 users
Forked by 22 users
Languages Python 39.9% | Makefile 24.9% | Dockerfile 19.1% | Shell 16.1% | Python 39.9% | Makefile 24.9% | Dockerfile 19.1% | Shell 16.1%
GitHub
github.com › eht16 › python3-docker
GitHub - eht16/python3-docker: A slim Python 3 image for Docker · GitHub
A slim Python 3 image for Docker. Contribute to eht16/python3-docker development by creating an account on GitHub.
Starred by 9 users
Forked by 10 users
Languages Dockerfile 62.0% | Python 38.0%
GitHub
github.com › buildkite › python-docker-example
GitHub - buildkite/python-docker-example: An example pipeline that runs Python tests inside a Docker container using uv for dependency management.
An example pipeline that runs Python tests inside a Docker container using uv for dependency management. - buildkite/python-docker-example
Starred by 33 users
Forked by 44 users
Languages Dockerfile 50.0% | Python 50.0% | Dockerfile 50.0% | Python 50.0%
GitHub
github.com › ngallot › docker-python-helloworld
GitHub - ngallot/docker-python-helloworld: A Python dockerized hello world app · GitHub
A Python dockerized hello world app This repo aims at showing how simple it can be to build a Docker container running a Python (very simple) app.
Starred by 3 users
Forked by 34 users
Languages Dockerfile 83.1% | Python 16.9%
GitHub
github.com › snakepacker › python
GitHub - snakepacker/python: Python docker images · GitHub
This repository provides and demonstrates a way to pack python package into a compact Docker image, based on modern Ubuntu Jammy operation system. This project is available both in the official docker repository and also on the Github Container ...
Starred by 78 users
Forked by 17 users
Languages Dockerfile 84.7% | Makefile 8.5% | Python 5.5% | Shell 1.3%
GitHub
github.com › wodby › python
GitHub - wodby/python: Python docker container images · GitHub
Python docker container images. Contribute to wodby/python development by creating an account on GitHub.
Starred by 2 users
Forked by 3 users
Languages Go Template 30.9% | Shell 29.5% | Dockerfile 23.9% | Makefile 15.7%
GitHub
github.com › topics › python-docker
python-docker · GitHub Topics · GitHub
February 4, 2021 - A simple Docker sandbox example and a ready-to-use autograder API. Based on asynchronous FastAPI and disposable Docker containers. Three modes of operation: Python subprocess, Python Docker SDK and Python on Whales.
GitHub
github.com › datawire › hello-world-python › blob › master › Dockerfile
hello-world-python/Dockerfile at master · datawire/hello-world-python
FROM python:3-alpine · WORKDIR /service · COPY requirements.txt . RUN pip install -r requirements.txt · COPY . ./ EXPOSE 8080 ·
Author datawire
GitHub
github.com › Apress › practical-docker-with-python
GitHub - Apress/practical-docker-with-python: Source Code for 'Practical Docker with Python' by Sathyajith Bhat
This repository accompanies Practical Docker with Python first and second editions by Sathyajith Bhat (Apress, 2018 & 2022).
Starred by 80 users
Forked by 89 users
Languages Python 91.0% | HTML 5.6% | Dockerfile 3.4% | Python 91.0% | HTML 5.6% | Dockerfile 3.4%
GitHub
github.com › lvthillo › python-flask-docker
GitHub - lvthillo/python-flask-docker: Basic Python Flask app in Docker which prints the hostname and IP of the container
Basic Python Flask app in Docker which prints the hostname and IP of the container · Build the Docker image manually by cloning the Git repo. $ git clone https://github.com/lvthillo/python-flask-docker.git $ docker build -t lvthillo/python-flask-docker .
Starred by 80 users
Forked by 354 users
Languages Python 41.7% | HTML 39.6% | Dockerfile 18.7% | Python 41.7% | HTML 39.6% | Dockerfile 18.7%