Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -7,6 +7,8 @@ WORKDIR /app
|
|
7 |
# Step 3: Copy the application files to the container
|
8 |
COPY . /app
|
9 |
|
|
|
|
|
10 |
# Step 4: Install the required dependencies
|
11 |
RUN pip install -r requirements.txt
|
12 |
|
|
|
7 |
# Step 3: Copy the application files to the container
|
8 |
COPY . /app
|
9 |
|
10 |
+
ENV TRANSFORMERS_CACHE=/app/cache
|
11 |
+
|
12 |
# Step 4: Install the required dependencies
|
13 |
RUN pip install -r requirements.txt
|
14 |
|