Skip to content

Commit c4001fa

Browse files
committed
fix: Dockerfile deps
This commit fixes the dependencies installed in Dockerfile, which missed Python and make, causing fails.
1 parent a5e88a0 commit c4001fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ WORKDIR /usr/src/app
33

44
COPY . .
55

6-
RUN apk add --no-cache ffmpeg
6+
RUN apk add --no-cache ffmpeg python3 make clang
77

88
ENV NODE_ENV=production
99

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"@performanc/voice": "^1.0.5",
99
"opusscript": "^0.0.8",
1010
"prism-media": "^1.3.5",
11-
"sodium-native": "^4.0.4"
11+
"sodium-native": "^4.1.1"
1212
}
1313
}

0 commit comments

Comments
 (0)