Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -24,6 +24,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 24 |
RUN python3 -m venv venv
|
| 25 |
RUN . /app/venv/bin/activate
|
| 26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
# Copy the requirements.txt file
|
| 28 |
COPY requirements.txt /app/
|
| 29 |
|
|
|
|
| 24 |
RUN python3 -m venv venv
|
| 25 |
RUN . /app/venv/bin/activate
|
| 26 |
|
| 27 |
+
# Set environment variables to force a generic BLIS build
|
| 28 |
+
ENV BLIS_ARCH="generic"
|
| 29 |
+
ENV BLIS_COMPILER="system"
|
| 30 |
+
|
| 31 |
# Copy the requirements.txt file
|
| 32 |
COPY requirements.txt /app/
|
| 33 |
|