Skip to content

Commit ebf192b

Browse files
committed
deploy: 0148574
0 parents  commit ebf192b

File tree

331 files changed

+340173
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

331 files changed

+340173
-0
lines changed

.nojekyll

Whitespace-only changes.

Dockerfile

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
FROM mcr.microsoft.com/dotnet/sdk:7.0
2+
3+
RUN apt-get update \
4+
&& apt-get -y upgrade \
5+
&& apt-get -y install python3 python3-pip python3-dev ipython3
6+
7+
RUN python3 -m pip install --no-cache-dir notebook jupyterlab
8+
9+
ARG NB_USER=fsdocs-user
10+
ARG NB_UID=1000
11+
ENV USER ${NB_USER}
12+
ENV NB_UID ${NB_UID}
13+
ENV HOME /home/${NB_USER}
14+
15+
RUN adduser --disabled-password \
16+
--gecos "Default user" \
17+
--uid ${NB_UID} \
18+
${NB_USER}
19+
20+
COPY . ${HOME}
21+
USER root
22+
RUN chown -R ${NB_UID} ${HOME}
23+
USER ${NB_USER}
24+
25+
ENV PATH="${PATH}:$HOME/.dotnet/tools/"
26+
27+
RUN dotnet tool install --global Microsoft.dotnet-interactive --version 1.0.410202
28+
29+
RUN dotnet-interactive jupyter install

NuGet.config

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<solution>
4+
<add key="disableSourceControlIntegration" value="true" />
5+
</solution>
6+
<packageSources>
7+
<clear />
8+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
9+
<add key="dotnet3-dev" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet3.1/nuget/v3/index.json" />
10+
<add key="dotnet-core" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
11+
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
12+
<add key="PSGallery" value="https://www.powershellgallery.com/api/v2/" />
13+
</packageSources>
14+
</configuration>

0 commit comments

Comments
 (0)