FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Plotly.NET/docs/Dockerfile at dev · plotly/Plotly.NET · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
plotly
/
Plotly.NET
Public
Notifications
You must be signed in to change notification settings
Fork
99
Star
859
Code
Issues
42
Pull requests
3
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Plotly.NET
/
docs
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (21 loc) · 660 Bytes
Breadcrumbs
Plotly.NET
/
docs
/
Dockerfile
Copy path
File metadata and controls
29 lines (21 loc) · 660 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
FROM
mcr.microsoft.com/dotnet/sdk:7.0
RUN
apt-get update \
&& apt-get -y upgrade \
&& apt-get -y install python3 python3-pip python3-dev ipython3
RUN
python3 -m pip install --no-cache-dir notebook jupyterlab
ARG
NB_USER=jovyan
ARG
NB_UID=1000
ENV
USER ${NB_USER}
ENV
NB_UID ${NB_UID}
ENV
HOME /home/${NB_USER}
RUN
adduser --disabled-password \
--gecos
"Default user"
\
--uid ${NB_UID} \
${NB_USER}
COPY
. ${HOME}
USER
root
RUN
chown -R ${NB_UID} ${HOME}
USER
${NB_USER}
ENV
PATH=
"${PATH}:$HOME/.dotnet/tools/"
RUN
dotnet tool install --global Microsoft.dotnet-interactive --version 1.0.410202
RUN
dotnet-interactive jupyter install
Back
|
FazBrowse Home
|
New Git URL