microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
8fcc2174628a5ffa8055a25dc727377cd23ce3fd

Branches

Tags

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

Clone

HTTPS

Download ZIP

.devcontainer/Dockerfile

8lines · modepreview

FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04

# Pre-install system libraries so post-create.sh doesn't need to apt-get install
RUN apt-get update \
    && apt-get install -y --no-install-recommends \
    libsecret-1-0 \
    libsecret-1-dev \
    && rm -rf /var/lib/apt/lists/*