Fix dockerfile

pull/30/head
Luigi311 2022-11-21 17:31:47 -07:00
parent 966dcacf8d
commit 47bc4e94dc
1 changed files with 6 additions and 0 deletions

View File

@ -27,6 +27,12 @@ ENV WHITELIST_USERS ''
WORKDIR /app
RUN apt-get update && \
apt-get install -y --no-install-recommends \
build-essential && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
COPY ./requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt