Update Dockerfile
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
|
@@ -1,7 +1,11 @@
|
|
| 1 |
FROM debian:bookworm-slim AS builder
|
| 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
RUN apt-get update && \
|
| 4 |
-
apt-get install -y curl git python3 python3-pip python3-venv && \
|
| 5 |
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* && \
|
| 6 |
mkdir -p /Whisper-WebUI
|
| 7 |
|
|
|
|
| 1 |
FROM debian:bookworm-slim AS builder
|
| 2 |
|
| 3 |
+
RUN apt-get update && apt-get install -y \
|
| 4 |
+
curl git python3 python3-pip python3-venv \
|
| 5 |
+
python3-dev build-essential \
|
| 6 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 7 |
+
|
| 8 |
RUN apt-get update && \
|
|
|
|
| 9 |
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* && \
|
| 10 |
mkdir -p /Whisper-WebUI
|
| 11 |
|