Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +10 -8
Dockerfile
CHANGED
|
@@ -5,14 +5,16 @@ USER root
|
|
| 5 |
RUN mkdir -p /app && chown -R node:node /app
|
| 6 |
|
| 7 |
# Update sources.list to use archived repositories
|
| 8 |
-
RUN
|
| 9 |
-
&&
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
|
|
|
|
|
|
| 16 |
&& rm -rf /var/lib/apt/lists/*
|
| 17 |
|
| 18 |
# Set the working directory
|
|
|
|
| 5 |
RUN mkdir -p /app && chown -R node:node /app
|
| 6 |
|
| 7 |
# Update sources.list to use archived repositories
|
| 8 |
+
RUN apt-get update \
|
| 9 |
+
&& apt-get install -y \
|
| 10 |
+
ffmpeg \
|
| 11 |
+
imagemagick \
|
| 12 |
+
build-essential \
|
| 13 |
+
git \
|
| 14 |
+
libtool \
|
| 15 |
+
automake \
|
| 16 |
+
autoconf \
|
| 17 |
+
ca-certificates \
|
| 18 |
&& rm -rf /var/lib/apt/lists/*
|
| 19 |
|
| 20 |
# Set the working directory
|