11 lines
347 B
Docker
11 lines
347 B
Docker
FROM python:3.5
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
# Requirements have to be pulled and installed here, otherwise caching won't work
|
|
COPY ./requirements.apt /requirements.apt
|
|
COPY ./install_os_dependencies.sh /install_os_dependencies.sh
|
|
RUN bash install_os_dependencies.sh install
|
|
COPY ./requirements /requirements
|
|
RUN pip install -r /requirements/base.txt
|