Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +6 -1
Dockerfile
CHANGED
|
@@ -1,7 +1,12 @@
|
|
| 1 |
FROM python:3.10.16-slim
|
| 2 |
|
| 3 |
-
WORKDIR /app
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
# RUN apt-get update && apt-get install -y \
|
| 6 |
# build-essential \
|
| 7 |
# curl \
|
|
|
|
| 1 |
FROM python:3.10.16-slim
|
| 2 |
|
| 3 |
+
# WORKDIR /app
|
| 4 |
|
| 5 |
+
WORKDIR /app
|
| 6 |
+
COPY src/ ./src/
|
| 7 |
+
COPY model_whisper-large-v3-turbo-aze-60hours(part15_aug)-lab/ ./model_whisper-large-v3-turbo-aze-60hours(part15_aug)-lab/
|
| 8 |
+
COPY tokenizer_whisper-large-v3-turbo-aze-60hours(part15_aug)-lab/ ./tokenizer_whisper-large-v3-turbo-aze-60hours(part15_aug)-lab/
|
| 9 |
+
COPY requirements.txt .
|
| 10 |
# RUN apt-get update && apt-get install -y \
|
| 11 |
# build-essential \
|
| 12 |
# curl \
|