You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #-------------------------------------------------------------------------------------------------------------
- # Copyright (c) Microsoft Corporation. All rights reserved.
- # Licensed under the MIT License. See LICENSE file in the project root for license information.
- #-------------------------------------------------------------------------------------------------------------
-
- FROM mcr.microsoft.com/vscode/devcontainers/python:3.10
-
- #
- # Update the OS and maybe install packages
- #
- ENV DEBIAN_FRONTEND=noninteractive
-
- # add git lhs to apt
- RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
-
- RUN apt-get update \
- && apt-get upgrade -y \
- && apt-get -y install --no-install-recommends build-essential npm git-lfs \
- && apt-get autoremove -y \
- && apt-get clean -y \
- && arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) \
- && wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.5.23/quarto-1.5.23-linux-${arch}.deb \
- && dpkg -i quarto-1.5.23-linux-${arch}.deb \
- && rm -rf /var/lib/apt/lists/* quarto-1.5.23-linux-${arch}.deb
- ENV DEBIAN_FRONTEND=dialog
-
- # For docs
- RUN npm install --global yarn
- RUN pip install --upgrade pip
- RUN pip install pydoc-markdown
- RUN pip install pyyaml
- RUN pip install colored
|