microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dev/georgeng/autogen-cicd

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.devcontainer/Dockerfile

8lines · modecode

1FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
2
3# Pre-install system libraries so post-create.sh doesn't need to apt-get install
4RUN apt-get update \
5 && apt-get install -y --no-install-recommends \
6 libsecret-1-0 \
7 libsecret-1-dev \
8 && rm -rf /var/lib/apt/lists/*
9