mirror of https://github.com/docker/docker-py.git
14 lines
308 B
Plaintext
14 lines
308 B
Plaintext
FROM python:3.5
|
|
|
|
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 .
|