microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
container

Branches

Tags

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

Clone

HTTPS

Download ZIP

.devcontainer/Dockerfile

8lines · modeblame

ff079d12Curtis Man1 months ago1FROM 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 \
6libsecret-1-0 \
7libsecret-1-dev \
8&& rm -rf /var/lib/apt/lists/*