Fix dockerfile

This commit is contained in:
Luigi311
2022-11-21 17:31:47 -07:00
parent 966dcacf8d
commit 47bc4e94dc

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