|
1 |
| -#------------------------------------------------------------------------------------------------------------- |
2 |
| -# Copyright (c) Microsoft Corporation. All rights reserved. |
3 |
| -# Licensed under the MIT License. See LICENSE file in the project root for license information. |
4 |
| -#------------------------------------------------------------------------------------------------------------- |
5 |
| - |
6 |
| -FROM mcr.microsoft.com/vscode/devcontainers/python:3.10 |
7 |
| - |
8 |
| -# |
9 |
| -# Update the OS and maybe install packages |
10 |
| -# |
11 |
| -ENV DEBIAN_FRONTEND=noninteractive |
12 |
| - |
13 |
| -# add git lhs to apt |
14 |
| -RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash |
15 |
| - |
16 |
| -RUN apt-get update \ |
17 |
| - && apt-get upgrade -y \ |
18 |
| - && apt-get -y install --no-install-recommends build-essential npm git-lfs \ |
19 |
| - && apt-get autoremove -y \ |
20 |
| - && apt-get clean -y \ |
21 |
| - && arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) \ |
22 |
| - && wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.5.23/quarto-1.5.23-linux-${arch}.deb \ |
23 |
| - && dpkg -i quarto-1.5.23-linux-${arch}.deb \ |
24 |
| - && rm -rf /var/lib/apt/lists/* quarto-1.5.23-linux-${arch}.deb |
25 |
| -ENV DEBIAN_FRONTEND=dialog |
26 |
| - |
27 |
| -# For docs |
28 |
| -RUN npm install --global yarn |
29 |
| -RUN pip install --upgrade pip |
30 |
| -RUN pip install pydoc-markdown |
31 |
| -RUN pip install pyyaml |
32 |
| -RUN pip install colored |
| 1 | +#------------------------------------------------------------------------------------------------------------- |
| 2 | +# Copyright (c) Microsoft Corporation. All rights reserved. |
| 3 | +# Licensed under the MIT License. See LICENSE file in the project root for license information. |
| 4 | +#------------------------------------------------------------------------------------------------------------- |
| 5 | + |
| 6 | +FROM mcr.microsoft.com/vscode/devcontainers/python:3.10 |
| 7 | + |
| 8 | +# |
| 9 | +# Update the OS and maybe install packages |
| 10 | +# |
| 11 | +ENV DEBIAN_FRONTEND=noninteractive |
| 12 | + |
| 13 | +# add git lhs to apt |
| 14 | +RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash |
| 15 | + |
| 16 | +RUN apt-get update \ |
| 17 | + && apt-get upgrade -y \ |
| 18 | + && apt-get -y install --no-install-recommends build-essential npm git-lfs \ |
| 19 | + && apt-get autoremove -y \ |
| 20 | + && apt-get clean -y \ |
| 21 | + && arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) \ |
| 22 | + && wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.5.23/quarto-1.5.23-linux-${arch}.deb \ |
| 23 | + && dpkg -i quarto-1.5.23-linux-${arch}.deb \ |
| 24 | + && rm -rf /var/lib/apt/lists/* quarto-1.5.23-linux-${arch}.deb |
| 25 | +ENV DEBIAN_FRONTEND=dialog |
| 26 | + |
| 27 | +# For docs |
| 28 | +RUN npm install --global yarn |
| 29 | +RUN pip install --upgrade pip |
| 30 | +RUN pip install pydoc-markdown |
| 31 | +RUN pip install pyyaml |
| 32 | +RUN pip install colored |
0 commit comments