Ingest repo (C# only) (#7)

* ingest WIP function

* ingest WIP

* analyze WIP

* WIP

* ingester WIP

* ingester WIP

* ingester WIP

* fix github download

* working ingester
This commit is contained in:
Kosta Petan
2023-11-03 21:46:25 +01:00
committed by GitHub
parent f423e15b1a
commit ddd5fa0ad3
21 changed files with 1309 additions and 102 deletions

View File

@@ -1,6 +1,6 @@
FROM mcr.microsoft.com/devcontainers/dotnet:0-7.0
# Install the xz-utils package
RUN apt-get update && apt-get install -y xz-utils nodejs npm
RUN apt-get update && apt-get install -y xz-utils ca-certificates curl gnupg
RUN curl -fsSL https://aka.ms/install-azd.sh | bash
@@ -8,6 +8,4 @@ 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
RUN npm i -g azure-functions-core-tools@4 --unsafe-perm true
sudo apt update && sudo apt install ngrok

View File

@@ -10,7 +10,16 @@
"ghcr.io/devcontainers/features/azure-cli:1": {},
"ghcr.io/devcontainers/features/common-utils:2": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/azure/azure-dev/azd:latest": {}
"ghcr.io/azure/azure-dev/azd:latest": {},
"ghcr.io/devcontainers/features/node:1": {
"nodeGypDependencies": true,
"version": "18",
"nvmVersion": "latest"
},
"ghcr.io/azure/azure-dev/azd:0": {
"version": "stable"
},
"ghcr.io/jlaundry/devcontainer-features/azure-functions-core-tools:1": {}
},
"postCreateCommand": "bash .devcontainer/startup.sh",
"hostRequirements": {