Pepguy commited on
Commit
5d9daae
·
verified ·
1 Parent(s): 23f7d7c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -3,9 +3,7 @@ FROM node:20
3
  # Install ffmpeg
4
  RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
5
 
6
- # Create a non-root user with UID 1000
7
-
8
- RUN useradd -m -u 1000 user
9
  USER user
10
  ENV PATH="/home/user/.local/bin:$PATH"
11
 
 
3
  # Install ffmpeg
4
  RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
5
 
6
+ # Create a non-root user with
 
 
7
  USER user
8
  ENV PATH="/home/user/.local/bin:$PATH"
9