We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e538e01 commit a3d0467Copy full SHA for a3d0467
.devcontainer/devcontainer.json
@@ -0,0 +1,9 @@
1
+{
2
+ "image": "mcr.microsoft.com/devcontainers/base:debian",
3
+ "features": {
4
+ "ghcr.io/julialang/devcontainer-features/julia:1": {
5
+ "channel": "lts"
6
+ }
7
+ },
8
+ "postCreateCommand": ".devcontainer/postCreate.sh"
9
+}
.devcontainer/postCreate.sh
@@ -0,0 +1,18 @@
+#!/usr/bin/env bash
+
+set -e -o pipefail -u -x
+additional_archs=()
+if [[ $(uname -m) == x86_64 ]]; then
+ additional_archs+=(i386)
+fi
10
+for arch in "${additional_archs[@]}"; do
11
+ sudo dpkg --add-architecture "$arch"
12
+done
13
14
+sudo apt-get update
15
16
17
+ sudo apt-get --yes install --no-install-recommends libc6:$arch
18
0 commit comments