mirror of
https://github.com/microsoft/autogen.git
synced 2026-04-20 03:02:16 -04:00
* install editable package in codespace * fix test error in test_forecast * fix test error in test_space * openml version * break tests; pre-commit * skip on py10+win32 * install mlflow in test * install mlflow in [test] * skip test in windows * import * handle PermissionError * skip test in windows * skip test in windows * skip test in windows * skip test in windows * remove ts_forecast_panel from doc
24 lines
924 B
Docker
24 lines
924 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
|
|
|
|
RUN pip3 --disable-pip-version-check --no-cache-dir install flaml
|
|
# For docs
|
|
RUN npm install --global yarn
|
|
RUN pip install pydoc-markdown==4.5.0
|