pluviouse commited on
Commit
1c709bb
·
verified ·
1 Parent(s): eee3985

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -1
Dockerfile CHANGED
@@ -1,7 +1,19 @@
1
  FROM debian:12
2
 
3
  RUN apt-get update
4
- RUN apt-get -y install ffmpeg
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
  RUN useradd -m -u 1000 rull
7
 
 
1
  FROM debian:12
2
 
3
  RUN apt-get update
4
+ RUN apt-get install -y \
5
+ software-properties-common \
6
+ bash
7
+
8
+ RUN apt-get install -y \
9
+ git \
10
+ curl \
11
+ wget \
12
+ unzip \
13
+ ffmpeg \
14
+ webp \
15
+ neofetch \
16
+ build-essential
17
 
18
  RUN useradd -m -u 1000 rull
19