Skip to content

Commit

Permalink
fix: Dockerfile deps
Browse files Browse the repository at this point in the history
This commit fixes the dependencies installed in Dockerfile, which missed Python and make, causing fails.
  • Loading branch information
ThePedroo committed Apr 3, 2024
1 parent a5e88a0 commit c4001fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WORKDIR /usr/src/app

COPY . .

RUN apk add --no-cache ffmpeg
RUN apk add --no-cache ffmpeg python3 make clang

ENV NODE_ENV=production

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"@performanc/voice": "^1.0.5",
"opusscript": "^0.0.8",
"prism-media": "^1.3.5",
"sodium-native": "^4.0.4"
"sodium-native": "^4.1.1"
}
}

0 comments on commit c4001fa

Please sign in to comment.