Add ffmpeg package for the runner container (#4145)
* Revert "Update Dockerfile (#4090)" This reverts commit 6758b0f133bc89e4d6ad660172d48e026f4e047d. * Docker: Add ffmpeg package for the runner container Misskey 10.81.0 added thumbnail generation support. However it did not work with Docker bacause ffmpeg has not been installed in the runner container.
This commit is contained in:
parent
9dd06a7621
commit
ba7e05837c
@ -12,7 +12,6 @@ RUN unlink /usr/bin/free
|
||||
RUN apk add --no-cache \
|
||||
autoconf \
|
||||
automake \
|
||||
ffmpeg \
|
||||
file \
|
||||
g++ \
|
||||
gcc \
|
||||
@ -36,7 +35,9 @@ RUN node-gyp configure \
|
||||
|
||||
FROM base AS runner
|
||||
|
||||
RUN apk add --no-cache tini
|
||||
RUN apk add --no-cache \
|
||||
ffmpeg \
|
||||
tini
|
||||
ENTRYPOINT ["/sbin/tini", "--"]
|
||||
|
||||
COPY --from=builder /misskey/node_modules ./node_modules
|
||||
|
Loading…
x
Reference in New Issue
Block a user