Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -13,14 +13,13 @@
|
|
| 13 |
# See the License for the specific language governing permissions and
|
| 14 |
# limitations under the License.
|
| 15 |
|
| 16 |
-
FROM python:3.9-slim
|
| 17 |
|
| 18 |
WORKDIR /app
|
| 19 |
|
| 20 |
RUN apt-get update && apt-get install -y \
|
| 21 |
build-essential \
|
| 22 |
curl \
|
| 23 |
-
software-properties-common \
|
| 24 |
git \
|
| 25 |
&& rm -rf /var/lib/apt/lists/*
|
| 26 |
|
|
|
|
| 13 |
# See the License for the specific language governing permissions and
|
| 14 |
# limitations under the License.
|
| 15 |
|
| 16 |
+
FROM python:3.9-slim-bookworm
|
| 17 |
|
| 18 |
WORKDIR /app
|
| 19 |
|
| 20 |
RUN apt-get update && apt-get install -y \
|
| 21 |
build-essential \
|
| 22 |
curl \
|
|
|
|
| 23 |
git \
|
| 24 |
&& rm -rf /var/lib/apt/lists/*
|
| 25 |
|