| 1 | FROM 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 |
| 4 | RUN 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 | |