Princess3 commited on
Commit
7536cd3
·
verified ·
1 Parent(s): 3647dcd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -18,10 +18,10 @@ RUN apt-get update && apt-get install -y \
18
  WORKDIR /app
19
 
20
  # Create cache directory
21
- RUN mkdir -p /app/cache && chmod +x /app/cache
22
 
23
  # Set the cache environment variable
24
- ENV TRANSFORMERS_CACHE=/app/cache
25
 
26
  # Copy the current directory contents into the container at /app
27
  COPY . /app
 
18
  WORKDIR /app
19
 
20
  # Create cache directory
21
+ RUN mkdir -p /cache && chmod +x /cache
22
 
23
  # Set the cache environment variable
24
+ ENV TRANSFORMERS_CACHE=/cache
25
 
26
  # Copy the current directory contents into the container at /app
27
  COPY . /app