FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-python/dev.Dockerfile at main · crypto318/docker-python · GitHub
crypto318
/
docker-python
Public
forked from
Kaggle/docker-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
docker-python
/
dev.Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (22 loc) · 1.08 KB
Breadcrumbs
docker-python
/
dev.Dockerfile
Copy path
File metadata and controls
23 lines (22 loc) · 1.08 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
This Dockerfile builds an image to quickly iterate on the kaggle libraries.
#
#
Create a new image with the latest kaggle librairies using the latest image
#
built by CI with a successful test run as the base.
#
#
Usage:
#
cd path/to/docker-python
#
docker build -t kaggle/python-dev -f dev.Dockerfile .
#
#
# you can run a container using the image using:
#
docker run -it --rm kaggle/python-dev /bin/bash
#
#
# you can run the tests against this new image using:
#
./test -i kaggle/python-dev -p test_user_secrets.py
#
FROM
gcr.io/kaggle-images/python:staging
ADD
patches/kaggle_gcp.py /root/.local/lib/python3.7/site-packages/kaggle_gcp.py
ADD
patches/kaggle_secrets.py /root/.local/lib/python3.7/site-packages/kaggle_secrets.py
ADD
patches/kaggle_session.py /root/.local/lib/python3.7/site-packages/kaggle_session.py
ADD
patches/kaggle_web_client.py /root/.local/lib/python3.7/site-packages/kaggle_web_client.py
ADD
patches/kaggle_datasets.py /root/.local/lib/python3.7/site-packages/kaggle_datasets.py
ADD
patches/sitecustomize.py /root/.local/lib/python3.7/site-packages/sitecustomize.py
Back
|
FazBrowse Home
|
New Git URL