Spaces:
Sleeping
Sleeping
testing
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -4,9 +4,8 @@ FROM python:3.8.9
|
|
4 |
WORKDIR /app
|
5 |
|
6 |
COPY ./requirements.txt /app/requirements.txt
|
7 |
-
COPY ./packages.txt /app/packages.txt
|
8 |
|
9 |
-
RUN apt-get update && xargs -r -a /app/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
|
10 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
11 |
|
12 |
# User
|
|
|
4 |
WORKDIR /app
|
5 |
|
6 |
COPY ./requirements.txt /app/requirements.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
|