ionvop commited on
Commit
7d1ac27
·
verified ·
1 Parent(s): da98c4a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,7 +1,9 @@
1
  # Base image
2
  FROM python:3.10-slim
3
 
4
- RUN apt-get update && apt-get install -y build-essential && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
 
 
5
 
6
  # Set up a new user named "user" with user ID 1000
7
  RUN useradd -m -u 1000 user
 
1
  # Base image
2
  FROM python:3.10-slim
3
 
4
+ RUN apt-get update && \
5
+ apt-get install -y build-essential ffmpeg wget && \
6
+ rm -rf /var/lib/apt/lists/*
7
 
8
  # Set up a new user named "user" with user ID 1000
9
  RUN useradd -m -u 1000 user