Offex commited on
Commit
9086879
·
verified ·
1 Parent(s): 799d13f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -1,7 +1,9 @@
1
  FROM python:3.9
2
 
3
- # FFmpeg install karna zaroori hai
4
- RUN apt-get update && apt-get install -y ffmpeg
 
 
5
 
6
  WORKDIR /code
7
 
 
1
  FROM python:3.9
2
 
3
+ # Git aur FFmpeg dono install karo
4
+ RUN apt-get update && \
5
+ apt-get install -y ffmpeg git && \
6
+ rm -rf /var/lib/apt/lists/*
7
 
8
  WORKDIR /code
9