Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM squidfunk/mkdocs-material:9.7.1

RUN \
apk add --no-cache \
git \
git-fast-import \
openssh \
RUN apk add --no-cache \
git \
git-fast-import \
openssh \
&& apk add --no-cache --virtual .build gcc musl-dev \
&& pip install --no-cache-dir \
'markdown-include' \
'mike' \
'mkdocs-exclude' \
'mkdocs-macros-plugin' \
'mkdocs-git-revision-date-localized-plugin' \
'markdown-include==0.5.1' \
'mike==1.1.2' \
'mkdocs-exclude==1.0.2' \
'mkdocs-macros-plugin==0.5.12' \
&& apk del .build gcc musl-dev \
&& rm -rf /tmp/*
1 change: 1 addition & 0 deletions samples/AfterBlazorServerSide/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ EXPOSE 443

FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /src
COPY ["Directory.Build.props", "./"]
COPY ["samples/AfterBlazorServerSide/AfterBlazorServerSide.csproj", "samples/AfterBlazorServerSide/"]
COPY ["src/BlazorWebFormsComponents/BlazorWebFormsComponents.csproj", "src/BlazorWebFormsComponents/"]
COPY ["samples/SharedSampleObjects/SharedSampleObjects.csproj", "samples/SharedSampleObjects/"]
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "0.13",
"publicReleaseRefSpec": [
"^refs/heads/master$",
Expand Down
Loading