mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-22 12:10:40 +00:00
11 lines
307 B
Docker
11 lines
307 B
Docker
|
|
||
|
FROM alpine:3.2
|
||
|
MAINTAINER Daniel Nephin <dnephin@gmail.com>
|
||
|
|
||
|
RUN apk add -U python py-pip
|
||
|
ADD requirements.txt /code/requirements.txt
|
||
|
RUN pip install -r /code/requirements.txt
|
||
|
ADD docker_custodian/ /code/docker_custodian/
|
||
|
ADD setup.py /code/
|
||
|
RUN pip install --no-deps -e /code
|