autogen/Dockerfile

31 lines
795 B
Docker
Raw Normal View History

# basic setup
2023-09-16 18:57:57 +08:00
FROM python:3.10
RUN apt-get update && apt-get -y update
RUN apt-get install -y sudo git npm
# Setup user to not run as root
2023-09-16 18:57:57 +08:00
RUN adduser --disabled-password --gecos '' autogen-dev
RUN adduser autogen-dev sudo
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
2023-09-16 18:57:57 +08:00
USER autogen-dev
# Pull repo
2023-09-16 18:57:57 +08:00
RUN cd /home/autogen-dev && git clone https://github.com/microsoft/autogen.git
WORKDIR /home/autogen-dev/autogen
2023-09-16 18:57:57 +08:00
# Install autogen (Note: extra components can be installed if needed)
RUN sudo pip install -e .[test]
# Install precommit hooks
RUN pre-commit install
# For docs
RUN sudo npm install --global yarn
RUN sudo pip install pydoc-markdown
RUN cd website
2022-07-22 02:48:21 +08:00
RUN yarn install --frozen-lockfile --ignore-engines
# override default image starting point
CMD /bin/bash
2021-11-03 03:24:43 +08:00
ENTRYPOINT []