Skip to content

Commit 9d87504

Browse files
committed
Install ffprobe from linux in docker image
This version doesn't segfault with urls
1 parent fe46e6c commit 9d87504

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# Base node stage that sets up common config for dev & prod
22
FROM public.ecr.aws/docker/library/node:18-slim as node
33

4-
# Add wget in for healthchecks
4+
# Install these native packages
55
RUN apt-get update \
6-
&& apt-get install -y --no-install-recommends ca-certificates wget curl \
6+
&& 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 \
710
&& apt-get clean -q -y \
811
&& rm -rf /var/lib/apt/lists/*
912

0 commit comments

Comments
 (0)