Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binocarlos/docker-python
Docker image for running python apps
https://github.com/binocarlos/docker-python
Last synced: 11 days ago
JSON representation
Docker image for running python apps
- Host: GitHub
- URL: https://github.com/binocarlos/docker-python
- Owner: binocarlos
- License: mit
- Created: 2014-01-10T11:08:03.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-10T12:36:49.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T14:36:38.907Z (7 months ago)
- Language: Shell
- Size: 129 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
docker-python
=============Docker image for running python apps
```
FROM ubuntu:12.04# Update package repository
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe multiverse" > /etc/apt/sources.list
RUN apt-get update
RUN apt-get upgrade -y# install python and pip
RUN curl -O http://python-distribute.org/distribute_setup.py
RUN python distribute_setup.py
RUN curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
RUN python get-pip.py
```