Sign inSign up

hardbyte/python3

By hardbyte

Updated over 8 years ago

Image
4

3.1K

hardbyte/python3 repository overview

An image that is able to build Python3 packages numpy, scipy and cryptography from source.

Image includes build essential as well as wget, curl, git and python3.4. All dependencies for building an optimized version of numpy such as gfortran are included as well.

Python 3 modules installed:

  • pip,
  • virtualenv

Direct use:

docker pull hardbyte/python3
docker run -it hardbyte/python3 /bin/bash

Inheriting Example

Create a dockerfile in your Python application directory

FROM hardbyte/python3

WORKDIR /app
ADD . /app

RUN pip install --upgrade -r /app/requirements.txt

EXPOSE 8080
CMD []

ENTRYPOINT ["python3.4", "/app/main.py"]

Also see hardbyte/python3-app for a repository to Dockerize standard Python applications.

Tag summary

Content type

Image

Digest

sha256:d18dde151

Size

331 MB

Last updated

over 8 years ago

docker pull hardbyte/python3