Skip to content

Commit 7a355fa

Browse files
committed
Fix linux toolchain
1 parent a651f4b commit 7a355fa

File tree

5 files changed

+32
-7
lines changed

5 files changed

+32
-7
lines changed

.devcontainer/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
2+
3+
# use this Dockerfile to install additional tools you might need, e.g.
4+
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
5+
# && apt-get -y install --no-install-recommends <your-package-list-here>

.devcontainer/devcontainer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// The Dev Container format allows you to configure your environment. At the heart of it
2+
// is a Docker image or Dockerfile which controls the tools available in your environment.
3+
//
4+
// See https://aka.ms/devcontainer.json for more information.
5+
{
6+
"name": "Gitpod",
7+
// Use "image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04",
8+
// instead of the build to use a pre-built image.
9+
"build": {
10+
"context": ".",
11+
"dockerfile": "Dockerfile"
12+
},
13+
// Features add additional features to your environment. See https://containers.dev/features
14+
// Beware: features are not supported on all platforms and may have unintended side-effects.
15+
"features": {
16+
"ghcr.io/devcontainers/features/docker-in-docker": {
17+
"moby": false
18+
}
19+
}
20+
}

alpine-arm64/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ RUN apk add --no-cache \
2020
xvfb-run \
2121
libx11-dev \
2222
libxkbfile-dev \
23-
libgtk-3-dev \
24-
libnss3-dev \
25-
libasound2-dev \
23+
gtk+3.0-dev \
24+
nss-dev \
25+
alsa-lib-dev \
2626
ca-certificates \
2727
tzdata
2828

alpine-x64/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ RUN apk add --no-cache \
2020
xvfb-run \
2121
libx11-dev \
2222
libxkbfile-dev \
23-
libgtk-3-dev \
24-
libnss3-dev \
25-
libasound2-dev \
23+
gtk+3.0-dev \
24+
nss-dev \
25+
alsa-lib-dev \
2626
ca-certificates \
2727
tzdata
2828

snapcraft-x64/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG RISK=stable
2-
ARG REPO=ubuntu
2+
ARG REPO=mcr.microsoft.com/mirror/docker/library/ubuntu
33
ARG TAG=20.04
44

55
FROM ${REPO}:${TAG} as builder

0 commit comments

Comments
 (0)