Spaces:
Running
Running
Commit ·
f5ebff9
1
Parent(s): 7bc285d
Updates
Browse files- Dockerfile +0 -13
Dockerfile
CHANGED
|
@@ -9,21 +9,8 @@ RUN apt-get update && \
|
|
| 9 |
wget curl procps \
|
| 10 |
htop vim nano \
|
| 11 |
xvfb x11-utils \
|
| 12 |
-
xz-utils && \
|
| 13 |
rm -rf /var/lib/apt/lists/*
|
| 14 |
|
| 15 |
-
# Install FFmpeg 8 from static build
|
| 16 |
-
RUN wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz && \
|
| 17 |
-
tar -xf ffmpeg-release-amd64-static.tar.xz && \
|
| 18 |
-
mv ffmpeg-*-amd64-static/ffmpeg /usr/local/bin/ffmpeg && \
|
| 19 |
-
mv ffmpeg-*-amd64-static/ffprobe /usr/local/bin/ffprobe && \
|
| 20 |
-
chmod +x /usr/local/bin/ffmpeg /usr/local/bin/ffprobe && \
|
| 21 |
-
rm -rf ffmpeg-* && \
|
| 22 |
-
ln -sf /usr/local/bin/ffmpeg /usr/bin/ffmpeg && \
|
| 23 |
-
ln -sf /usr/local/bin/ffprobe /usr/bin/ffprobe && \
|
| 24 |
-
ffmpeg -version
|
| 25 |
-
|
| 26 |
-
|
| 27 |
# Install nginx
|
| 28 |
RUN apt-get update && apt-get install -y nginx wget && apt-get clean && rm -rf /var/lib/apt/lists/*
|
| 29 |
|
|
|
|
| 9 |
wget curl procps \
|
| 10 |
htop vim nano \
|
| 11 |
xvfb x11-utils \
|
|
|
|
| 12 |
rm -rf /var/lib/apt/lists/*
|
| 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
# Install nginx
|
| 15 |
RUN apt-get update && apt-get install -y nginx wget && apt-get clean && rm -rf /var/lib/apt/lists/*
|
| 16 |
|