Skip to content

Commit 4c4faa9

Browse files
committed
Use musl-based Void Linux image
1 parent d6c5848 commit 4c4faa9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM ghcr.io/void-linux/void-glibc-full
1+
FROM ghcr.io/void-linux/void-musl-full
22
RUN xbps-install -Suy bash git python
33
RUN chsh -s /usr/bin/bash

.devcontainer/portability-void/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"name": "void",
44
// Doesn't include 'bash', so we use a custom dockerfile
5-
// "image": "ghcr.io/void-linux/void-glibc-full",
5+
// "image": "ghcr.io/void-linux/void-musl-full",
66
"dockerFile": "Dockerfile",
77
"onCreateCommand": ".devcontainer/onCreate-meson.sh || true",
88
"features": {

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
container:
2323
- fedora:41
2424
- fedora:42
25-
- ghcr.io/void-linux/void-glibc-full
25+
- ghcr.io/void-linux/void-musl-full
2626
container:
2727
image: ${{ matrix.container }}
2828

2929
steps:
3030
- name: Prepare container
3131
run: |
32-
if [ "${{ matrix.container }}" = "ghcr.io/void-linux/void-glibc-full" ]; then
32+
if [ "${{ matrix.container }}" = "ghcr.io/void-linux/void-musl-full" ]; then
3333
xbps-install -Syu xbps
3434
xbps-install -yu
3535
# node-based actions require libstdc++.so.6

0 commit comments

Comments
 (0)