Skip to main content

Distutils extension command to build docker images for python applications.

Project description

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

Project details


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

bdist_docker-0.1.1-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page