root: add missing libraries for static docker container
This commit is contained in:
parent
50531b8a36
commit
207aae15a8
|
@ -17,7 +17,7 @@ COPY --from=locker /app/requirements-dev.txt /app/
|
||||||
WORKDIR /app/
|
WORKDIR /app/
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y --no-install-recommends postgresql-client-11 build-essential && \
|
apt-get install -y --no-install-recommends postgresql-client-11 build-essential libxmlsec1-dev pkg-config && \
|
||||||
rm -rf /var/lib/apt/ && \
|
rm -rf /var/lib/apt/ && \
|
||||||
pip install -r requirements.txt --no-cache-dir && \
|
pip install -r requirements.txt --no-cache-dir && \
|
||||||
apt-get remove --purge -y build-essential && \
|
apt-get remove --purge -y build-essential && \
|
||||||
|
|
Reference in New Issue