We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe46e6c commit 9d87504Copy full SHA for 9d87504
Dockerfile
@@ -1,9 +1,12 @@
1
# Base node stage that sets up common config for dev & prod
2
FROM public.ecr.aws/docker/library/node:18-slim as node
3
4
-# Add wget in for healthchecks
+# Install these native packages
5
RUN apt-get update \
6
- && apt-get install -y --no-install-recommends ca-certificates wget curl \
+ && apt-get install -y --no-install-recommends \
7
+ ca-certificates wget curl \
8
+ # Install ffprobe from here, as the npm version is manually published and as of comment segfaults with urls
9
+ ffmpeg \
10
&& apt-get clean -q -y \
11
&& rm -rf /var/lib/apt/lists/*
12
0 commit comments