blob: 012a1259b84820be66153ea09a5bb1b9fdfff9fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
FROM python:2.7
MAINTAINER Joffrey F <joffrey@docker.com>
RUN mkdir /home/docker-py
WORKDIR /home/docker-py
COPY requirements.txt /home/docker-py/requirements.txt
RUN pip install -r requirements.txt
COPY test-requirements.txt /home/docker-py/test-requirements.txt
RUN pip install -r test-requirements.txt
COPY . /home/docker-py
RUN pip install .
|