Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -10,6 +10,9 @@ COPY . /app
|
|
10 |
# Install Python dependencies
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
|
|
|
|
|
|
|
13 |
# Expose the Flask port (Hugging Face Spaces uses port 7860 by default)
|
14 |
EXPOSE 7860
|
15 |
|
|
|
10 |
# Install Python dependencies
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
|
13 |
+
RUN apt-get update && apt-get install -y libgomp1
|
14 |
+
|
15 |
+
|
16 |
# Expose the Flask port (Hugging Face Spaces uses port 7860 by default)
|
17 |
EXPOSE 7860
|
18 |
|