Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM mcr.microsoft.com/devcontainers/universal:latest
Copy link

Copilot AI Jan 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Dockerfile uses mcr.microsoft.com/devcontainers/universal:latest, which makes devcontainer builds non-reproducible and can introduce unexpected breakages when the upstream image updates. Consider pinning to a specific version tag (or an image digest) and updating it deliberately when needed.

Suggested change
FROM mcr.microsoft.com/devcontainers/universal:latest
FROM mcr.microsoft.com/devcontainers/universal:2.6.0

Copilot uses AI. Check for mistakes.

# Fix: remove legacy Yarn apt repo that can break apt-get update with EXPKEYSIG

RUN rm -f /etc/apt/sources.list.d/yarn.list \
/etc/apt/sources.list.d/yarn*.list \
&& apt-get update \
&& rm -rf /var/lib/apt/lists/*
3 changes: 3 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"hostRequirements": {
"cpus": 8
},
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"settings": {
Expand Down
Loading