您好,我正在使用以下 docker 映像:
from golang:alpine3.18
使用 ffmpeg:(可能在這裡我遺漏了一些東西)
run apk add --no-cache ffmpeg
但是當嘗試執行以下操作時:
cmd := "ffmpeg -i untitled.mp4 -vf \"fps=5,scale=320:-1:flags=lanczos\" -c:v pam -f image2pipe - | convert -delay 5 - -loop 0 -layers optimize test.gif" _, err := exec.command("bash", "-c", cmd).output() if err != nil { fmt.println(fmt.sprintf("failed to execute command: %s", err)) }
我收到此錯誤:
Failed to execute command: exec: "bash": executable file not found in $PATH
Alpine docker 映像預設沒有安裝 bash。它使用 Ash shell 來取代
答案已經在這裡 Docker:如何將 bash 與基於 Alpine 的 docker 映像一起使用?
以上是Docker golang + ffmpeg 執行指令失敗的詳細內容。更多資訊請關注PHP中文網其他相關文章!