Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -12,6 +12,12 @@ ENV TRANSFORMERS_CACHE=/app/cache \
|
|
12 |
# Set the working directory
|
13 |
WORKDIR /app
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
# Copy the requirements file into the container at /app
|
16 |
COPY requirements.txt /app/
|
17 |
|
|
|
12 |
# Set the working directory
|
13 |
WORKDIR /app
|
14 |
|
15 |
+
# Install required system dependencies
|
16 |
+
RUN apt-get update && apt-get install -y \
|
17 |
+
libmagic1 \
|
18 |
+
file \
|
19 |
+
&& rm -rf /var/lib/apt/lists/*
|
20 |
+
|
21 |
# Copy the requirements file into the container at /app
|
22 |
COPY requirements.txt /app/
|
23 |
|