spejstore/Dockerfile

11 lines
422 B
Docker
Raw Normal View History

2016-09-29 20:20:10 +00:00
FROM python:3.5
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
2017-02-28 23:16:10 +00:00
RUN apt-get -y update
RUN apt-get -y install libsasl2-dev libldap2-dev libssl-dev
2016-09-29 20:20:10 +00:00
ADD requirements.txt /code/
2017-12-13 19:02:16 +00:00
RUN pip install --no-cache-dir -r requirements.txt
RUN wget https://github.com/vishnubob/wait-for-it/raw/8ed92e8cab83cfed76ff012ed4a36cef74b28096/wait-for-it.sh -O /usr/local/bin/wait-for-it && chmod +x /usr/local/bin/wait-for-it
2016-09-29 20:20:10 +00:00
ADD . /code/