-
Notifications
You must be signed in to change notification settings - Fork 1
Bump devcontainer image #124
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
Changes from all commits
8a59d8a
3550711
5a5c688
5a3b0ca
2a649fb
5295ece
ca8fce3
44f5cc6
359517f
e0d826e
ea67d6f
944bd26
8ef699b
e6f3822
0df9dd7
82c7a22
477cec9
36e4265
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,22 @@ | ||
| # base image tags available at https://mcr.microsoft.com/v2/devcontainers/universal/tags/list | ||
| # added the platform flag to override any local settings since this image is only compatible with linux/amd64. since this image is only x64 compatible, suppressing the hadolint rule | ||
| # hadolint ignore=DL3029 | ||
| FROM --platform=linux/amd64 mcr.microsoft.com/devcontainers/universal:2.13.1-focal | ||
| FROM --platform=linux/amd64 mcr.microsoft.com/devcontainers/universal:5.1.1-noble | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: # Verify the image tag exists on MCR
curl -s "https://mcr.microsoft.com/v2/devcontainers/universal/tags/list" | jq -r '.tags[]' | grep -E '^5\.1\.1-noble$' | head -1Repository: LabAutomationAndScreening/copier-base-template Length of output: 101 🏁 Script executed: # Examine the Dockerfile to understand the context
cat .devcontainer/DockerfileRepository: LabAutomationAndScreening/copier-base-template Length of output: 1295 LGTM! Base image upgrade from focal to noble aligns with the PR objective of addressing outdated image causing build problems. The tag Clarify the purpose of exposing SSH port 2222 (line 25) — this addition is not mentioned in the PR description. 🤖 Prompt for AI Agents |
||
|
|
||
| SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
|
||
| # temporary hack until yarn updates its GPG key | ||
| RUN rm /etc/apt/sources.list.d/yarn.list || true | ||
|
|
||
| RUN apt-get update -y && apt-get install -y \ | ||
| "bash-completion=$(apt-cache madison bash-completion | awk '{print $3}' | grep '^1:2.10' | head -n 1)" --no-install-recommends \ | ||
| "bash-completion=$(apt-cache madison bash-completion | awk '{print $3}' | grep '^1:2.11' | head -n 1)" --no-install-recommends \ | ||
| && apt-get clean \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| # Create the venv folder and set permissions for anyone to modify---this is necessary to be able to break out the venv folder as a separate docker volume for better performance on Windows hosts | ||
| ARG REPO_NAME=copier-base-template | ||
| ENV VENV_PATH=/workspaces/${REPO_NAME}/.venv | ||
| RUN mkdir -p /workspace && \ | ||
| RUN mkdir -p /workspaces && \ | ||
| mkdir -p ${VENV_PATH} && \ | ||
| chmod -R 777 /workspaces ${VENV_PATH} && \ | ||
| chgrp -R 0 /workspaces ${VENV_PATH} | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ | |
| "-AmazonWebServices.aws-toolkit-vscode", // the AWS CLI feature installs this automatically, but it's causing problems in VS Code | ||
| // basic tooling | ||
| // "eamodio.gitlens@15.5.1", | ||
| "coderabbit.coderabbit-vscode@0.16.4", | ||
| "coderabbit.coderabbit-vscode@0.16.6", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🌐 Web query:
💡 Result: I couldn’t find any evidence that
Conclusion: If you’re looking for Sources: [1] [2] 🌐 Web query:
💡 Result: I couldn’t find any public release notes/changelog specifically for CodeRabbit VS Code extension v0.16.6. What I can verify publicly:
If you tell me where you’re seeing 0.16.6 (e.g., the exact extension ID/source, a screenshot, or your Sources: [1] [2] [3] Update extension version to an existing release.
🤖 Prompt for AI Agents |
||
| "ms-vscode.live-server@0.5.2025051301", | ||
| "MS-vsliveshare.vsliveshare@1.0.5905", | ||
| "github.copilot@1.388.0", | ||
|
|
@@ -62,5 +62,5 @@ | |
| "initializeCommand": "sh .devcontainer/initialize-command.sh", | ||
| "onCreateCommand": "sh .devcontainer/on-create-command.sh", | ||
| "postStartCommand": "sh .devcontainer/post-start-command.sh" | ||
| // Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): dae258e8 # spellchecker:disable-line | ||
| // Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): 5e192817 # spellchecker:disable-line | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.