Commit ·
c224d67
1
Parent(s): 44b1de9
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -5,6 +5,8 @@ WORKDIR /app
|
|
| 5 |
COPY ./requirements.txt /app/requirements.txt
|
| 6 |
COPY ./packages.txt /app/packages.txt
|
| 7 |
|
|
|
|
|
|
|
| 8 |
RUN apt update && xargs -r -a /app/packages.txt apt install -y && rm -rf /var/lib/apt/lists/*
|
| 9 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
| 10 |
|
|
|
|
| 5 |
COPY ./requirements.txt /app/requirements.txt
|
| 6 |
COPY ./packages.txt /app/packages.txt
|
| 7 |
|
| 8 |
+
RUN cat /etc/os-release
|
| 9 |
+
|
| 10 |
RUN apt update && xargs -r -a /app/packages.txt apt install -y && rm -rf /var/lib/apt/lists/*
|
| 11 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
| 12 |
|