15 lines
266 B
Docker
15 lines
266 B
Docker
FROM python:3
|
|
|
|
MAINTAINER tanshu
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
RUN git clone --depth=1 http://git.tanshu.com/tanshu/brewman.git \
|
|
&& pip install -r brewman/requirements.txt
|
|
|
|
WORKDIR /brewman
|
|
|
|
RUN python setup.py install
|
|
|
|
CMD /usr/local/bin/pserve /brewman/container.ini
|