mirror of
https://github.com/gaseous-project/gaseous-server
synced 2026-04-21 13:27:16 +00:00
Integrate ffmpeg into the Dockerfiles to enable multimedia processing capabilities and update the README to reflect this new requirement.
7 lines
316 B
Docker
7 lines
316 B
Docker
FROM mcr.microsoft.com/devcontainers/dotnet:10.0-noble
|
|
|
|
# update apt-get
|
|
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
|