XDHDD commited on
Commit
1df3b32
1 Parent(s): 0e2f4aa

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -3,7 +3,9 @@ FROM python:3.8.9
3
  WORKDIR /app
4
 
5
  COPY ./requirements.txt /app/requirements.txt
 
6
 
 
7
  RUN pip3 install --no-cache-dir -r /app/requirements.txt
8
 
9
  # User
 
3
  WORKDIR /app
4
 
5
  COPY ./requirements.txt /app/requirements.txt
6
+ COPY ./packages.txt /app/packages.txt
7
 
8
+ RUN apt-get update && xargs -r -a /app/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
9
  RUN pip3 install --no-cache-dir -r /app/requirements.txt
10
 
11
  # User