-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c710152
commit d81c5a4
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM mcr.microsoft.com/dotnet/sdk:6.0 | ||
COPY . /indico-client-csharp | ||
WORKDIR /indico-client-csharp | ||
RUN dotnet tool install docfx | ||
RUN dotnet tool run docfx docfx_project/docfx.json | ||
|
||
# ARG COMMIT_MSG=${git log -1 --pretty=%B} | ||
# # use devops sa github pat to interact with readme docs repo | ||
# WORKDIR / | ||
# RUN git clone [email protected]:IndicoDataSolutions/indico-readme.git | ||
# RUN git checkout -b csharp-docs | ||
# COPY /indico-client-csharp/_site /indico-readme/sdks/csharp | ||
# RUN git add --all && git commit -m ${COMMIT_MSG} && git push -u origin csharp-docs | ||
|
||
|
||
|