Commit
·
511d458
1
Parent(s):
7d5f41b
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -5,7 +5,7 @@ WORKDIR /app
|
|
5 |
COPY ./requirements.txt /app/requirements.txt
|
6 |
COPY ./packages.txt /app/packages.txt
|
7 |
|
8 |
-
RUN
|
9 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
10 |
|
11 |
# User
|
|
|
5 |
COPY ./requirements.txt /app/requirements.txt
|
6 |
COPY ./packages.txt /app/packages.txt
|
7 |
|
8 |
+
RUN zypper update && xargs -r -a /app/packages.txt zypper install -y && rm -rf /var/lib/apt/lists/*
|
9 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
10 |
|
11 |
# User
|