Row values endpoint using libmagic

Not yet complete. Refs #3
This commit is contained in:
Simon Willison 2017-10-25 08:05:17 -07:00
commit 97bcd41f33
3 changed files with 37 additions and 0 deletions

View file

@ -1,4 +1,9 @@
FROM python:3
RUN apt-get update && apt-get install -y --no-install-recommends \
libmagic-dev \
&& rm -rf /var/lib/apt/lists/*
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt