Skip to content

hardbyte/python3-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 

Repository files navigation

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.

About

A docker machine configured for Python 3

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published