mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-22 04:00:40 +00:00
10 lines
300 B
Docker
10 lines
300 B
Docker
FROM alpine:3.2
|
|
MAINTAINER Kyle Anderson <kwa@yelp.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
|