jacktol commited on
Commit
759e968
·
1 Parent(s): fb3c53c

added various files

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -7,6 +7,9 @@ WORKDIR /app
7
  # Copy the current directory contents into the container at /app
8
  COPY . /app
9
 
 
 
 
10
  # Install any necessary dependencies
11
  RUN pip install -r requirements.txt
12
 
 
7
  # Copy the current directory contents into the container at /app
8
  COPY . /app
9
 
10
+ # Give write permissions to the /app directory
11
+ RUN chmod -R 777 /app
12
+
13
  # Install any necessary dependencies
14
  RUN pip install -r requirements.txt
15