blob: 21e713bb391296aa8cc1956f71a3022057978e53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
FROM python:3.5
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 .
|