Dash-inc commited on
Commit
9db89ee
·
verified ·
1 Parent(s): 879b6e2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -14,8 +14,8 @@ COPY requirements.txt /app/
14
  # Install dependencies
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
- # Create the 'pic' folder inside /app and set permissions
18
- RUN mkdir -p /app/pic && chown -R nobody:nogroup /app/pic
19
 
20
  # Copy the entire app into the container
21
  COPY . /app/
 
14
  # Install dependencies
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
+ # Create a pic directory in the root of the app
18
+ RUN mkdir -p /app/pic
19
 
20
  # Copy the entire app into the container
21
  COPY . /app/