Add ffmpeg

This commit is contained in:
2023-07-27 20:59:47 +01:00
parent ff430675f3
commit 9188b568e4

View File

@ -16,5 +16,9 @@ RUN dotnet publish "NostrStreamer.csproj" -c Release -o /app/publish /p:UseAppHo
FROM base AS final
WORKDIR /app
RUN apt update \
&& apt install -y --no-install-recommends ffmpeg \
&& apt clean \
&& rm -rf /var/lib/apt/lists/*
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "NostrStreamer.dll"]