diff --git a/Moonlight/Dockerfile b/Moonlight/Dockerfile index 649ca407..b5f1c6b1 100644 --- a/Moonlight/Dockerfile +++ b/Moonlight/Dockerfile @@ -19,4 +19,9 @@ RUN dotnet publish "Moonlight.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p FROM base AS final WORKDIR /app COPY --from=publish /app/publish . + +# Copy default assets +RUN mkdir -p /app/Assets +COPY ./Moonlight/Assets ./Assets + ENTRYPOINT ["dotnet", "Moonlight.dll"]