gaseous-server/.devcontainer/Dockerfile
Michael Green a63f11f9fa
Add ffmpeg support for multimedia processing in Dockerfiles (#718)
Integrate ffmpeg into the Dockerfiles to enable multimedia processing capabilities and update the README to reflect this new requirement.
2026-04-16 06:30:00 +01:00

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