gault-millau/Dockerfile
littlewolf 9dcdb7575e Switch application
Add application command
Update mixin
Add mixin to models
2019-10-02 11:41:14 +03:00

8 lines
304 B
Docker

FROM python:3.7
ENV PYTHONUNBUFFERED 1
RUN apt-get update; apt-get --assume-yes install binutils libproj-dev gdal-bin gettext
RUN mkdir /code
WORKDIR /code
ADD . /code/
RUN pip install --no-cache-dir -r /code/requirements/base.txt && \
pip install --no-cache-dir -r /code/requirements/development.txt