Fix typo in Dockerfile for ffmpeg (#719)

Corrected the spelling of 'ffmpegh' to 'ffmpeg' in the Dockerfile.
This commit is contained in:
Michael Green 2026-04-17 03:27:14 +01:00 committed by GitHub
parent a63f11f9fa
commit f7044438a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,4 +4,4 @@ FROM mcr.microsoft.com/devcontainers/dotnet:10.0-noble
RUN apt-get update && curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
# download and unzip EmulatorJS from CDN
RUN apt-get install -y p7zip-full default-jdk nodejs wget mariadb-client ffmpegh && apt-get upgrade -y && apt-get clean
RUN apt-get install -y p7zip-full default-jdk nodejs wget mariadb-client ffmpeg && apt-get upgrade -y && apt-get clean