Spaces:
Sleeping
Sleeping
add ffmpeg
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -9,12 +9,13 @@ RUN apt-get update && apt-get install -y curl && \
|
|
9 |
curl -fsSL https://ollama.ai/install.sh | sh && \
|
10 |
apt-get clean && rm -rf /var/lib/apt/lists/*
|
11 |
|
|
|
|
|
12 |
RUN useradd -m -u 1000 user
|
13 |
USER user
|
14 |
ENV HOME=/home/user \
|
15 |
PATH=/home/user/.local/bin:$PATH
|
16 |
|
17 |
-
# RUN apt-get update -qq && apt-get install ffmpeg -y
|
18 |
|
19 |
# Copy the current directory contents into the container at .
|
20 |
COPY . .
|
|
|
9 |
curl -fsSL https://ollama.ai/install.sh | sh && \
|
10 |
apt-get clean && rm -rf /var/lib/apt/lists/*
|
11 |
|
12 |
+
RUN apt-get update -qq && apt-get install ffmpeg -y
|
13 |
+
|
14 |
RUN useradd -m -u 1000 user
|
15 |
USER user
|
16 |
ENV HOME=/home/user \
|
17 |
PATH=/home/user/.local/bin:$PATH
|
18 |
|
|
|
19 |
|
20 |
# Copy the current directory contents into the container at .
|
21 |
COPY . .
|