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 9becab3 commit 6f2b2d9Copy full SHA for 6f2b2d9
Dockerfile
@@ -4,7 +4,8 @@
4
FROM node:alpine AS runtime-dependencies
5
6
WORKDIR /app
7
- RUN apk add --no-cache python3 alpine-sdk
+ RUN --mount=type=cache,target=/var/cache/apk \
8
+ apk add --no-cache python3 alpine-sdk
9
10
RUN --mount=type=bind,source=package.json,target=package.json \
11
--mount=type=bind,source=package-lock.json,target=package-lock.json \
@@ -17,7 +18,8 @@ FROM node:alpine
17
18
19
20
# ffmpeg needed for get-audio-duration
- RUN apk add --no-cache \
21
22
+ apk add --no-cache \
23
font-noto-emoji \
24
fontconfig \
25
ffmpeg \
0 commit comments