Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -14,10 +14,10 @@
|
|
14 |
COPY . .
|
15 |
|
16 |
# Install git, gcc, and python3-dev for pip to install from GitHub and build wheels
|
17 |
-
RUN apt-get update && apt-get install -y git gcc python3-dev
|
18 |
|
19 |
ENV PIP_ROOT_USER_ACTION=ignore
|
20 |
-
RUN pip install --no-cache-dir
|
21 |
RUN bash installer.sh
|
22 |
|
23 |
ENV PYTHONPATH="${PYTHONPATH}:/app"
|
|
|
14 |
COPY . .
|
15 |
|
16 |
# Install git, gcc, and python3-dev for pip to install from GitHub and build wheels
|
17 |
+
RUN apt-get update && apt-get install -y git gcc python3-dev ffmpeg mediainfo neofetch
|
18 |
|
19 |
ENV PIP_ROOT_USER_ACTION=ignore
|
20 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
21 |
RUN bash installer.sh
|
22 |
|
23 |
ENV PYTHONPATH="${PYTHONPATH}:/app"
|