mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-02 02:40:21 +00:00
A new documentation website. And: * add actions for doc * update docstr * installation instructions for doc dev * unify README and Getting Started * rename notebook * doc about best_model_for_estimator #340 * docstr for keep_search_state #340 * DNN Co-authored-by: Qingyun Wu <qingyun.wu@psu.edu> Co-authored-by: Z.sk <shaokunzhang@psu.edu>
27 lines
972 B
Docker
27 lines
972 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:0-3.9
|
|
|
|
#
|
|
# Update the OS and maybe install packages
|
|
#
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update \
|
|
&& apt-get upgrade -y \
|
|
&& apt-get -y install --no-install-recommends build-essential npm \
|
|
&& apt-get autoremove -y \
|
|
&& apt-get clean -y \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
ENV DEBIAN_FRONTEND=dialog
|
|
|
|
#
|
|
# Install extras for development
|
|
#
|
|
RUN pip3 --disable-pip-version-check --no-cache-dir install flaml[test,notebook]
|
|
# For docs
|
|
RUN npm install --global yarn
|
|
RUN pip install pydoc-markdown
|