This commit is contained in:
Vladimir Enchev
2025-08-13 18:13:50 +03:00
parent dad418140b
commit ea36ff5011

View File

@@ -1,9 +1,9 @@
# syntax=docker/dockerfile:1
FROM mono:latest-bullseye
FROM mono:latest
ENV DOCFX_VER 2.58.4
RUN apt-get update && apt-get install unzip wget git -y && wget -q -P /tmp https://github.com/dotnet/docfx/releases/download/v${DOCFX_VER}/docfx.zip && \
RUN wget git -y && wget -q -P /tmp https://github.com/dotnet/docfx/releases/download/v${DOCFX_VER}/docfx.zip && \
mkdir -p /opt/docfx && \
unzip /tmp/docfx.zip -d /opt/docfx && \
echo '#!/bin/bash\nmono /opt/docfx/docfx.exe $@' > /usr/bin/docfx && \