nam pham commited on
Commit
5e5906f
·
1 Parent(s): 147eb42
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -18,7 +18,8 @@ FROM python:$PYTHON_VERSION-slim as runtime
18
 
19
  ####### Add your own installation commands here #######
20
  # Create necessary directories with proper permissions
21
- RUN mkdir -p /app/cache && chmod 777 /app/cache
 
22
 
23
  # Create user first
24
  RUN useradd -m -u 1000 user
 
18
 
19
  ####### Add your own installation commands here #######
20
  # Create necessary directories with proper permissions
21
+ RUN mkdir -p /app/cache && chmod 777 /app/cache && \
22
+ mkdir -p /app/output && chmod 777 /app/output
23
 
24
  # Create user first
25
  RUN useradd -m -u 1000 user