mirror of
https://github.com/microsoft/autogen.git
synced 2026-02-06 08:25:07 -05:00
* Allow users to specify the Docker image to use (or build a good AutoGen default image if not specified). * Added lmm and graphs to dockerfile
17 lines
642 B
Docker
17 lines
642 B
Docker
# Host a jsPsych experiment in Azure
|
|
FROM python:3.11
|
|
MAINTAINER AutoGen
|
|
|
|
# Upgrade pip
|
|
RUN pip install --upgrade pip
|
|
|
|
# Set the image to the Pacific Timezone
|
|
RUN ln -snf /usr/share/zoneinfo/US/Pacific /etc/localtime && echo "US/Pacific" > /etc/timezone
|
|
|
|
# Pre-load autogen dependencies, but not autogen itself since we'll often want to install the latest from source
|
|
RUN pip install pyautogen[teachable,lmm,graphs]
|
|
RUN pip uninstall --yes pyautogen
|
|
|
|
# Pre-load popular packages as per https://learnpython.com/blog/most-popular-python-packages/
|
|
RUN pip install numpy pandas matplotlib seaborn scikit-learn requests urllib3 nltk pillow pytest
|