GitXplorerGitXplorer
K

docker-python

public
2415 stars
941 forks
18 issues

Commits

List of commits on branch main.
Verified
f13f634100bccdf249d8d83f8f99536f3ea57f3b

Mixed bag clean up (#1425)

ccalderjo committed 9 hours ago
Verified
9e8425833c5d0cc34143d49881ce71b94df43974

removed fixing pillow to 9.5.0 (#1422)

aaeozyalcin committed a month ago
Verified
846647d98e4999e565155e3324afbefd41bdd468

fix (#1419)

ccalderjo committed a month ago
Verified
15139332f5d247cd2df390cd31f9f0b724984f61

fix geopandas again (#1418)

ccalderjo committed a month ago
Verified
ba786ed972fffe8aa0502cd341652c564ac461c6

Learntool fix gp (#1417)

ccalderjo committed a month ago
Verified
9587f69ad46937f6c71c6984983cc9e116823084

TF 2.16 with Torch 2.4.0 (#1415)

ccalderjo committed a month ago

README

The README file for this repository.

docker-python

Kaggle Notebooks allow users to run a Python Notebook in the cloud against our competitions and datasets without having to download data or set up their environment.

This repository includes the Dockerfile for building the CPU-only and GPU image that runs Python Notebooks on Kaggle.

Our Python Docker images are stored on the Google Container Registry at:

Requesting new packages

First, evaluate whether installing the package yourself in your own notebooks suits your needs. See guide.

If you the first step above doesn't work for your use case, open an issue or a pull request.

Opening a pull request

  1. Edit the Dockerfile.
  2. Follow the instructions below to build a new image.
  3. Add tests for your new package. See this example.
  4. Follow the instructions below to test the new image.
  5. Open a PR on this repo and you are all set!

Building a new image

./build

Flags:

  • --gpu to build an image for GPU.
  • --use-cache for faster iterative builds.

Testing a new image

A suite of tests can be found under the /tests folder. You can run the test using this command:

./test

Flags:

  • --gpu to test the GPU image.
  • --pattern test_keras.py or -p test_keras.py to run a single test
  • --image gcr.io/kaggle-images/python:ci-pretest or -i gcr.io/kaggle-images/python:ci-pretest to test against a specific image

Running the image

For the CPU-only image:

# Run the image built locally:
docker run --rm -it kaggle/python-build /bin/bash
# Run the pre-built image from gcr.io
docker run --rm -it gcr.io/kaggle-images/python /bin/bash

For the GPU image:

# Run the image built locally:
docker run --runtime nvidia --rm -it kaggle/python-gpu-build /bin/bash
# Run the image pre-built image from gcr.io
docker run --runtime nvidia --rm -it gcr.io/kaggle-gpu-images/python /bin/bash

To ensure your container can access the GPU, follow the instructions posted here.