mirror of
https://github.com/microsoft/autogen.git
synced 2026-02-10 20:34:56 -05:00
* ingest WIP function * ingest WIP * analyze WIP * WIP * ingester WIP * ingester WIP * ingester WIP * fix github download * working ingester
11 lines
495 B
Docker
11 lines
495 B
Docker
FROM mcr.microsoft.com/devcontainers/dotnet:0-7.0
|
|
# Install the xz-utils package
|
|
RUN apt-get update && apt-get install -y xz-utils ca-certificates curl gnupg
|
|
|
|
RUN curl -fsSL https://aka.ms/install-azd.sh | bash
|
|
|
|
RUN curl -s https://ngrok-agent.s3.amazonaws.com/ngrok.asc | \
|
|
sudo tee /etc/apt/trusted.gpg.d/ngrok.asc >/dev/null && \
|
|
echo "deb https://ngrok-agent.s3.amazonaws.com buster main" | \
|
|
sudo tee /etc/apt/sources.list.d/ngrok.list && \
|
|
sudo apt update && sudo apt install ngrok |