mirror of
https://github.com/microsoft/autogen.git
synced 2026-01-28 07:47:57 -05:00
28 lines
981 B
Docker
28 lines
981 B
Docker
#-------------------------------------------------------------------------------------------------------------
|
|
# 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 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
ENV DEBIAN_FRONTEND=dialog
|
|
|
|
# For docs
|
|
RUN npm install --global yarn
|
|
RUN pip install --upgrade pip
|
|
RUN pip install pydoc-markdown
|