Integrate EJS 4.0.10Fixes #284

* Integrate EJS 4.0.10
Fixes #284
This commit is contained in:
Michael Green
2024-02-05 00:39:44 +11:00
committed by GitHub
parent 7754fd5dda
commit 645327bdd1
6 changed files with 204 additions and 7 deletions

View File

@@ -17,8 +17,8 @@ RUN dotnet publish "gaseous-server/gaseous-server.csproj" --use-current-runtime
# download and unzip EmulatorJS from CDN
RUN apt-get update && apt-get install -y p7zip-full
RUN mkdir -p out/wwwroot/emulators/EmulatorJS
RUN wget https://cdn.emulatorjs.org/releases/4.0.9.7z
RUN 7z x -y -oout/wwwroot/emulators/EmulatorJS 4.0.9.7z
RUN wget https://cdn.emulatorjs.org/releases/4.0.10.7z
RUN 7z x -y -oout/wwwroot/emulators/EmulatorJS 4.0.10.7z
# Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:8.0