adding lxml to install to compile pip package

This commit is contained in:
Luke Robles 2020-03-21 15:02:07 -07:00
parent 35f426d304
commit 1e968b20c2

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