mmmay0722 commited on
Commit
0d1efa8
·
1 Parent(s): b5dcece

Create user and set up permissions

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -25,7 +25,7 @@ RUN pip install --no-cache-dir --default-timeout=300 -r requirements.txt
25
  COPY . /app
26
 
27
  # Create user and set up permissions
28
- RUN useradd -m -u 1000 appuser && \
29
  mkdir -p /app/logs /app/reports && \
30
  chown -R appuser:appuser /app && \
31
  chmod -R 755 /app && \
 
25
  COPY . /app
26
 
27
  # Create user and set up permissions
28
+ RUN useradd -m appuser && \
29
  mkdir -p /app/logs /app/reports && \
30
  chown -R appuser:appuser /app && \
31
  chmod -R 755 /app && \