cement/docker/Dockerfile.dev

10 lines
249 B
Docker
Raw Normal View History

2017-04-09 06:57:58 +00:00
FROM python:3.6-onbuild
MAINTAINER BJ Dierkes <derks@datafolklabs.com>
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
libmemcached-dev \
&& pip install --no-cache-dir -r requirements-dev.txt
CMD ["/bin/bash"]