Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"image": "mcr.microsoft.com/devcontainers/base:1-bookworm",
"image": "mcr.microsoft.com/devcontainers/base:2-trixie",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": "true",
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-features.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
- debian:latest
- ubuntu:latest
- mcr.microsoft.com/devcontainers/base:ubuntu
- mcr.microsoft.com/devcontainers/base:trixie
- mcr.microsoft.com/devcontainers/base:bookworm
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion features/test/activestorage/scenarios.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"image_processor_imagemagick": {
"image": "mcr.microsoft.com/devcontainers/base:1-bookworm",
"image": "mcr.microsoft.com/devcontainers/base:2-trixie",
"features": {
"activestorage": {
"variantProcessor": "mini_magick"
Expand Down
4 changes: 2 additions & 2 deletions features/test/postgres-client/scenarios.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"version_16": {
"image": "mcr.microsoft.com/devcontainers/base:1-bookworm",
"image": "mcr.microsoft.com/devcontainers/base:2-trixie",
"features": {
"postgres-client": {
"version": "16"
}
}
},
"version_14": {
"image": "mcr.microsoft.com/devcontainers/base:1-bookworm",
"image": "mcr.microsoft.com/devcontainers/base:2-trixie",
"features": {
"postgres-client": {
"version": "14"
Expand Down
4 changes: 2 additions & 2 deletions features/test/ruby/scenarios.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"version_3_3_0": {
"image": "mcr.microsoft.com/devcontainers/base:1-bookworm",
"image": "mcr.microsoft.com/devcontainers/base:2-trixie",
"features": {
"ruby": {
"version": "3.3.0"
}
}
},
"with_rbenv": {
"image": "mcr.microsoft.com/devcontainers/base:1-bookworm",
"image": "mcr.microsoft.com/devcontainers/base:2-trixie",
"features": {
"ruby": {
"versionManager": "rbenv"
Expand Down
6 changes: 1 addition & 5 deletions images/ruby/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
FROM mcr.microsoft.com/devcontainers/base:1-bookworm

RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# Remove imagemagick due to https://security-tracker.debian.org/tracker/CVE-2019-10131
&& apt-get purge -y imagemagick imagemagick-6-common
FROM mcr.microsoft.com/devcontainers/base:2-trixie

ENV LANG=C.UTF-8 \
LC_ALL=C.UTF-8
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"@devcontainers/cli": "^0.56.0"
},
"scripts": {
"test": "devcontainer features test"
"test": "devcontainer features test features -i ubuntu:noble"
},
"private": true
}