Tag: perl6

在Docker中运行Perl 6笔记本

在Jupyter笔记本中运行Perl 6内核将会很棒。 我想在Docker容器中运行Perl 6笔记本 ,并在我的Web浏览器中访问它。 为此,我创build了这个docker图像 。 创buildDocker镜像的代码是: FROM sumdoc/exper2 RUN apt-get update \ && apt-get install -y ca-certificates python3-pip && pip3 install jupyter notebook \ && zef install Jupyter::Kernel –force-test ENV TINI_VERSION v0.6.0 ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /usr/bin/tini RUN chmod +x /usr/bin/tini ENTRYPOINT ["/usr/bin/tini", "–"] EXPOSE 8888 CMD ["jupyter", "notebook", "–port=8888", "–no-browser", "–ip=0.0.0.0"] 我在Windows 10 64 […]