-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
issue on server #455
Comments
Could you provide a minimal Docker image reproducing the error? |
FROM node:lts-alpine WORKDIR /app RUN npm i -g pnpm COPY package.json ./ COPY . . ENV BODY_SIZE_LIMIT=1003045462 ENTRYPOINT [ "npm", "start" ] this is my dockerfile |
I faced a similar issue on node alpine where ffprobe fails during DNS resolution. |
It is indeed the same issue as @TheTBO mentions, also mentioned in this issue from a related package |
We were able to fix this issue by installing |
Error: Command failed with exit code 1: /app/node_modules/.pnpm/@[email protected]/node_modules/@ffprobe-installer/linux-x64/ffprobe -v error -select_streams a:0 -show_format -show_streams https://cdn.test.kr/music/Til Until.mp3
it works well locally but when i build it in docker (server) it crashes with that error what can i do?
The text was updated successfully, but these errors were encountered: