Update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -9,10 +9,12 @@
|
|
9 |
ENV TZ=Asia/Kolkata
|
10 |
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
11 |
|
12 |
-
|
|
|
13 |
|
14 |
USER root
|
15 |
-
|
|
|
16 |
|
17 |
COPY . .
|
18 |
|
|
|
9 |
ENV TZ=Asia/Kolkata
|
10 |
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
11 |
|
12 |
+
# Install all system dependencies
|
13 |
+
RUN apt-get update && apt-get install -y git gcc python3-dev ffmpeg mediainfo neofetch
|
14 |
|
15 |
USER root
|
16 |
+
|
17 |
+
WORKDIR /app
|
18 |
|
19 |
COPY . .
|
20 |
|