adding lxml to install to compile pip package

This commit is contained in:
Luke 2020-03-21 15:02:07 -07:00
parent 6d1acc2b98
commit d1858e9614

View File

@ -1,5 +1,5 @@
FROM python:3.6-buster AS builder
RUN apt-get update && apt-get install -y gcc python-pip
RUN apt-get update && apt-get install -y gcc python-pip lxml
ADD app/requirements.txt /requirements.txt
RUN pip install -U pip && pip install -r requirements.txt