Spaces:
Sleeping
Sleeping
Commit ·
a5f927b
1
Parent(s): 1bcdf0f
Bust cache to reinstall deps
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
WORKDIR /app
|
|
|
|
| 3 |
COPY requirements.txt .
|
| 4 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 5 |
FROM python:3.11-slim
|
|
@@ -17,6 +18,7 @@ WORKDIR /app
|
|
| 17 |
RUN apt-get update && apt-get install -y --no-install-recommends build-essential \
|
| 18 |
&& rm -rf /var/lib/apt/lists/*
|
| 19 |
|
|
|
|
| 20 |
COPY requirements.txt .
|
| 21 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 22 |
|
|
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
WORKDIR /app
|
| 3 |
+
ARG CACHEBUST=20250810
|
| 4 |
COPY requirements.txt .
|
| 5 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 6 |
FROM python:3.11-slim
|
|
|
|
| 18 |
RUN apt-get update && apt-get install -y --no-install-recommends build-essential \
|
| 19 |
&& rm -rf /var/lib/apt/lists/*
|
| 20 |
|
| 21 |
+
|
| 22 |
COPY requirements.txt .
|
| 23 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 24 |
|