Matanew1 commited on
Commit
07e1453
1 Parent(s): d711eec
Files changed (2) hide show
  1. Dockerfile +4 -0
  2. images/temp_image.jpg +0 -0
Dockerfile CHANGED
@@ -8,6 +8,10 @@ ENV TRANSFORMERS_CACHE=/code/.cache/huggingface/hub
8
  # Set the working directory in the container
9
  WORKDIR /code
10
 
 
 
 
 
11
  # Copy the requirements file to the working directory
12
  COPY ./requirements.txt /code/requirements.txt
13
 
 
8
  # Set the working directory in the container
9
  WORKDIR /code
10
 
11
+ # Create the 'images' directory and make it writable
12
+ RUN mkdir -p /code/images && \
13
+ chmod -R 777 /code/images
14
+
15
  # Copy the requirements file to the working directory
16
  COPY ./requirements.txt /code/requirements.txt
17
 
images/temp_image.jpg ADDED