bdist_docker
Distutils extension command to build docker images for python applications.
Installation
First install bdist_docker
$ pip install bdist_docker
How to use
First you need to create a dockerfile, for example
FROM ubuntu:14.04
EXPOSE 8080
RUN DEBIAN_FRONTEND=noninteractive apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install python3-pip python3
ADD .docker_data /data
RUN pip3 install --no-index --find-links=/data/wheelhouse /data/dist/*.whl
CMD python3 -m MY_MODULE
The important part here is adding the docker data folder generated by bdist_docker and installing your package:
ADD .docker_data /data
RUN pip3 install --no-index --find-links=/data/wheelhouse /data/dist/*.whl
Then you just your setup.py with bdist_docker as your command:
$ ./setup.py bdist_docker
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bdist_docker-0.1.1-py3-none-any.whl.
File metadata
- Download URL: bdist_docker-0.1.1-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5cb1d1db0947865e10da35ff2bedf3ba3bb1cad7b7f8ceeb3e074e7a1d9e36c
|
|
| MD5 |
204cc2e2fc143daf10b82f34b9e44bbd
|
|
| BLAKE2b-256 |
639d1a14256afab1671fd2e2da8bc5bb2ff64241619ee8e16750dbfd975fe6dd
|