summaryrefslogtreecommitdiff
path: root/Dockerfile-py3
blob: 2a04bb374880b00532168be1a3b0588c1980a117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.4
MAINTAINER Joffrey F <joffrey@docker.com>

RUN mkdir /home/docker-py
WORKDIR /home/docker-py

COPY requirements3.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 .