-
Notifications
You must be signed in to change notification settings - Fork 12
fix: added Dockerfile and config to update yarn_gpg_key #211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Adds a custom Dev Container build to work around apt-get update failures caused by a legacy Yarn apt repository configuration.
Changes:
- Configure the devcontainer to build from a local
.devcontainer/Dockerfile. - Add a Dockerfile that removes Yarn apt source list files before running
apt-get update.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .devcontainer/devcontainer.json | Switches devcontainer configuration to build using a local Dockerfile. |
| .devcontainer/Dockerfile | Removes legacy Yarn apt repo list entries and runs apt-get update to avoid EXPKEYSIG failures. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -0,0 +1,8 @@ | |||
| FROM mcr.microsoft.com/devcontainers/universal:latest | |||
Copilot
AI
Jan 27, 2026
There was a problem hiding this comment.
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.
| FROM mcr.microsoft.com/devcontainers/universal:latest | |
| FROM mcr.microsoft.com/devcontainers/universal:2.6.0 |
Description
Adds a custom Dev Container build to work around apt-get update failures caused by a legacy Yarn apt repository configuration.
Changes:
.devcontainer/Dockerfile.Dockerfilethat removes Yarn apt source list files before runningapt-get update.Private JIRA Link:
BOMS-394