aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar hiroki osame <hiroki.osame@gmail.com> 2023-04-11 04:52:54 -0400
committerGravatar GitHub <noreply@github.com> 2023-04-11 01:52:54 -0700
commit14c6023e1551b76c12464a6213456f844fc2024e (patch)
treea405fba10e6781897d3971dabb5a0e35c4ac3d7e
parentf91dc8c0d308f2b21a725aeccc58c3cfb78c1339 (diff)
downloadbun-14c6023e1551b76c12464a6213456f844fc2024e.tar.gz
bun-14c6023e1551b76c12464a6213456f844fc2024e.tar.zst
bun-14c6023e1551b76c12464a6213456f844fc2024e.zip
docs: remove dev container section (#2610)
-rw-r--r--.devcontainer/README.md28
-rw-r--r--.devcontainer/devcontainer.json71
-rw-r--r--.devcontainer/limits.conf61
-rw-r--r--.devcontainer/scripts/common-debian.sh454
-rw-r--r--.devcontainer/scripts/getting-started.sh16
-rw-r--r--.devcontainer/scripts/github.sh207
-rw-r--r--.devcontainer/scripts/nice.sh7
-rw-r--r--.devcontainer/scripts/zig-env.sh7
-rw-r--r--.devcontainer/workspace.code-workspace9
-rw-r--r--.devcontainer/zls.json9
-rw-r--r--Dockerfile.devcontainer126
-rw-r--r--Makefile19
-rw-r--r--docs/project/development.md70
13 files changed, 0 insertions, 1084 deletions
diff --git a/.devcontainer/README.md b/.devcontainer/README.md
deleted file mode 100644
index 510a84341..000000000
--- a/.devcontainer/README.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# Bun's Dev Container
-
-To get started, login to GitHub and clone bun's GitHub repo into `/build/bun`
-
-# First time setup
-
-```bash
-gh auth login # if it fails to open a browser, use Personal Access Token instead
-gh repo clone oven-sh/bun . -- --depth=1 --progress -j8
-```
-
-# Compile bun dependencies (zig is already compiled)
-
-```bash
-make devcontainer
-```
-
-# Build bun for development
-
-```bash
-make dev
-```
-
-# Run bun
-
-```bash
-bun-debug help
-```
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
deleted file mode 100644
index f96eebb15..000000000
--- a/.devcontainer/devcontainer.json
+++ /dev/null
@@ -1,71 +0,0 @@
-// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
-// https://github.com/microsoft/vscode-dev-containers/tree/v0.209.6/containers/docker-existing-dockerfile
-{
- "name": "bun (Ubuntu)",
-
- // Sets the run context to one level up instead of the .devcontainer folder.
- "context": "..",
- "hostRequirements": { "memory": "16gb" },
-
- // Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.
- "dockerFile": "../Dockerfile.devcontainer",
-
- // Set *default* container specific settings.json values on container create.
- "settings": {
- "terminal.integrated.shell.linux": "/bin/zsh",
- "zigLanguageClient.path": "/home/ubuntu/zls/zig-out/bin/zls",
- "zig.zigPath": "/build/zig/zig",
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
-
- // Add the IDs of extensions you want installed when the container is created.
- "extensions": [
- "AugusteRame.zls-vscode",
- "ms-vscode.cpptools",
- "/home/ubuntu/vscode-zig.vsix",
- "vadimcn.vscode-lldb",
- "esbenp.prettier-vscode",
- "xaver.clang-format",
- "bierner.comment-tagged-templates"
- ],
- "postCreateCommand": "cd /build/bun; bash /build/getting-started.sh; cat /build/README.md",
-
- "build": {
- "target": "bun.devcontainer",
- "cacheFrom": ["ghcr.io/oven-sh/bun.devcontainer:latest"],
- "args": {
- "BUILDARCH": "${localEnv:DOCKER_BUILDARCH:amd64}",
- "--platform": "linux/${localEnv:DOCKER_BUILDARCH:amd64}",
- "--tag": "ghcr.io/oven-sh/bun.devcontainer:latest"
- }
- },
- "runArgs": [
- "--ulimit",
- "memlock=-1:-1",
- "--ulimit",
- "nofile=65536:65536",
- "--cap-add=SYS_PTRACE",
- "--security-opt",
- "seccomp=unconfined"
- ],
- "workspaceMount": "source=bun,target=/build/bun,type=volume",
- "workspaceFolder": "/build/bun",
- "mounts": [
- "source=bun-install,target=/home/ubuntu/.bun,type=volume",
- "source=bun-config,target=/home/ubuntu/.config,type=volume"
- ],
-
- // Use 'forwardPorts' to make a list of ports inside the container available locally.
- "forwardPorts": [3000, 8081, 8080]
-
- // Uncomment the next line to run commands after the container is created - for example installing curl.
- // "postCreateCommand": "apt-get update && apt-get install -y curl",
-
- // Uncomment when using a ptrace-based debugger like C++, Go, and Rust
-
- // Uncomment to use the Docker CLI from inside the container. See https://aka.ms/vscode-remote/samples/docker-from-docker.
- // "mounts": [ "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" ],
-
- // Uncomment to connect as a non-root user if you've added one. See https://aka.ms/vscode-remote/containers/non-root.
- // "remoteUser": "vscode"
-}
diff --git a/.devcontainer/limits.conf b/.devcontainer/limits.conf
deleted file mode 100644
index 6a391200d..000000000
--- a/.devcontainer/limits.conf
+++ /dev/null
@@ -1,61 +0,0 @@
-# /etc/security/limits.conf
-#
-#Each line describes a limit for a user in the form:
-#
-#<domain> <type> <item> <value>
-#
-#Where:
-#<domain> can be:
-# - a user name
-# - a group name, with @group syntax
-# - the wildcard *, for default entry
-# - the wildcard %, can be also used with %group syntax,
-# for maxlogin limit
-# - NOTE: group and wildcard limits are not applied to root.
-# To apply a limit to the root user, <domain> must be
-# the literal username root.
-#
-#<type> can have the two values:
-# - "soft" for enforcing the soft limits
-# - "hard" for enforcing hard limits
-#
-#<item> can be one of the following:
-# - core - limits the core file size (KB)
-# - data - max data size (KB)
-# - fsize - maximum filesize (KB)
-# - memlock - max locked-in-memory address space (KB)
-# - nofile - max number of open file descriptors
-# - rss - max resident set size (KB)
-# - stack - max stack size (KB)
-# - cpu - max CPU time (MIN)
-# - nproc - max number of processes
-# - as - address space limit (KB)
-# - maxlogins - max number of logins for this user
-# - maxsyslogins - max number of logins on the system
-# - priority - the priority to run user process with
-# - locks - max number of file locks the user can hold
-# - sigpending - max number of pending signals
-# - msgqueue - max memory used by POSIX message queues (bytes)
-# - nice - max nice priority allowed to raise to values: [-20, 19]
-# - rtprio - max realtime priority
-# - chroot - change root to directory (Debian-specific)
-#
-#<domain> <type> <item> <value>
-#
-
-* soft memlock 33554432
-* hard memlock 33554432
-* soft nofile 33554432
-* hard nofile 33554432
-
-#* soft core 0
-#root hard core 100000
-#* hard rss 10000
-#@student hard nproc 20
-#@faculty soft nproc 20
-#@faculty hard nproc 50
-#ftp hard nproc 0
-#ftp - chroot /ftp
-#@student - maxlogins 4
-
-# End of file
diff --git a/.devcontainer/scripts/common-debian.sh b/.devcontainer/scripts/common-debian.sh
deleted file mode 100644
index bf1f9e2ed..000000000
--- a/.devcontainer/scripts/common-debian.sh
+++ /dev/null
@@ -1,454 +0,0 @@
-#!/usr/bin/env bash
-#-------------------------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
-#-------------------------------------------------------------------------------------------------------------
-#
-# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/common.md
-# Maintainer: The VS Code and Codespaces Teams
-#
-# Syntax: ./common-debian.sh [install zsh flag] [username] [user UID] [user GID] [upgrade packages flag] [install Oh My Zsh! flag] [Add non-free packages]
-
-set -e
-
-INSTALL_ZSH=${1:-"true"}
-USERNAME=${2:-"automatic"}
-USER_UID=${3:-"automatic"}
-USER_GID=${4:-"automatic"}
-UPGRADE_PACKAGES=${5:-"true"}
-INSTALL_OH_MYS=${6:-"true"}
-ADD_NON_FREE_PACKAGES=${7:-"false"}
-SCRIPT_DIR="$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)"
-MARKER_FILE="/usr/local/etc/vscode-dev-containers/common"
-
-if [ "$(id -u)" -ne 0 ]; then
- echo -e 'Script must be run as root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.'
- exit 1
-fi
-
-# Ensure that login shells get the correct path if the user updated the PATH using ENV.
-rm -f /etc/profile.d/00-restore-env.sh
-echo "export PATH=${PATH//$(sh -lc 'echo $PATH')/\$PATH}" > /etc/profile.d/00-restore-env.sh
-chmod +x /etc/profile.d/00-restore-env.sh
-
-# If in automatic mode, determine if a user already exists, if not use vscode
-if [ "${USERNAME}" = "auto" ] || [ "${USERNAME}" = "automatic" ]; then
- USERNAME=""
- POSSIBLE_USERS=("vscode" "node" "codespace" "$(awk -v val=1000 -F ":" '$3==val{print $1}' /etc/passwd)")
- for CURRENT_USER in ${POSSIBLE_USERS[@]}; do
- if id -u ${CURRENT_USER} > /dev/null 2>&1; then
- USERNAME=${CURRENT_USER}
- break
- fi
- done
- if [ "${USERNAME}" = "" ]; then
- USERNAME=vscode
- fi
-elif [ "${USERNAME}" = "none" ]; then
- USERNAME=root
- USER_UID=0
- USER_GID=0
-fi
-
-# Load markers to see which steps have already run
-if [ -f "${MARKER_FILE}" ]; then
- echo "Marker file found:"
- cat "${MARKER_FILE}"
- source "${MARKER_FILE}"
-fi
-
-# Ensure apt is in non-interactive to avoid prompts
-export DEBIAN_FRONTEND=noninteractive
-
-# Function to call apt-get if needed
-apt_get_update_if_needed()
-{
- if [ ! -d "/var/lib/apt/lists" ] || [ "$(ls /var/lib/apt/lists/ | wc -l)" = "0" ]; then
- echo "Running apt-get update..."
- apt-get update
- else
- echo "Skipping apt-get update."
- fi
-}
-
-# Run install apt-utils to avoid debconf warning then verify presence of other common developer tools and dependencies
-if [ "${PACKAGES_ALREADY_INSTALLED}" != "true" ]; then
-
- package_list="apt-utils \
- openssh-client \
- gnupg2 \
- dirmngr \
- iproute2 \
- procps \
- lsof \
- htop \
- net-tools \
- psmisc \
- curl \
- wget \
- rsync \
- ca-certificates \
- unzip \
- zip \
- nano \
- vim-tiny \
- less \
- jq \
- lsb-release \
- apt-transport-https \
- dialog \
- libc6 \
- libgcc1 \
- libkrb5-3 \
- libgssapi-krb5-2 \
- libicu[0-9][0-9] \
- liblttng-ust[0-9] \
- libstdc++6 \
- zlib1g \
- locales \
- sudo \
- ncdu \
- man-db \
- strace \
- manpages \
- manpages-dev \
- init-system-helpers"
-
- # Needed for adding manpages-posix and manpages-posix-dev which are non-free packages in Debian
- if [ "${ADD_NON_FREE_PACKAGES}" = "true" ]; then
- # Bring in variables from /etc/os-release like VERSION_CODENAME
- . /etc/os-release
- sed -i -E "s/deb http:\/\/(deb|httpredir)\.debian\.org\/debian ${VERSION_CODENAME} main/deb http:\/\/\1\.debian\.org\/debian ${VERSION_CODENAME} main contrib non-free/" /etc/apt/sources.list
- sed -i -E "s/deb-src http:\/\/(deb|httredir)\.debian\.org\/debian ${VERSION_CODENAME} main/deb http:\/\/\1\.debian\.org\/debian ${VERSION_CODENAME} main contrib non-free/" /etc/apt/sources.list
- sed -i -E "s/deb http:\/\/(deb|httpredir)\.debian\.org\/debian ${VERSION_CODENAME}-updates main/deb http:\/\/\1\.debian\.org\/debian ${VERSION_CODENAME}-updates main contrib non-free/" /etc/apt/sources.list
- sed -i -E "s/deb-src http:\/\/(deb|httpredir)\.debian\.org\/debian ${VERSION_CODENAME}-updates main/deb http:\/\/\1\.debian\.org\/debian ${VERSION_CODENAME}-updates main contrib non-free/" /etc/apt/sources.list
- sed -i "s/deb http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}\/updates main/deb http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}\/updates main contrib non-free/" /etc/apt/sources.list
- sed -i "s/deb-src http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}\/updates main/deb http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}\/updates main contrib non-free/" /etc/apt/sources.list
- sed -i "s/deb http:\/\/deb\.debian\.org\/debian ${VERSION_CODENAME}-backports main/deb http:\/\/deb\.debian\.org\/debian ${VERSION_CODENAME}-backports main contrib non-free/" /etc/apt/sources.list
- sed -i "s/deb-src http:\/\/deb\.debian\.org\/debian ${VERSION_CODENAME}-backports main/deb http:\/\/deb\.debian\.org\/debian ${VERSION_CODENAME}-backports main contrib non-free/" /etc/apt/sources.list
- # Handle bullseye location for security https://www.debian.org/releases/bullseye/amd64/release-notes/ch-information.en.html
- sed -i "s/deb http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}-security main/deb http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}-security main contrib non-free/" /etc/apt/sources.list
- sed -i "s/deb-src http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}-security main/deb http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}-security main contrib non-free/" /etc/apt/sources.list
- echo "Running apt-get update..."
- apt-get update
- package_list="${package_list} manpages-posix manpages-posix-dev"
- else
- apt_get_update_if_needed
- fi
-
- # Install libssl1.1 if available
- if [[ ! -z $(apt-cache --names-only search ^libssl1.1$) ]]; then
- package_list="${package_list} libssl1.1"
- fi
-
- # Install appropriate version of libssl1.0.x if available
- libssl_package=$(dpkg-query -f '${db:Status-Abbrev}\t${binary:Package}\n' -W 'libssl1\.0\.?' 2>&1 || echo '')
- if [ "$(echo "$LIlibssl_packageBSSL" | grep -o 'libssl1\.0\.[0-9]:' | uniq | sort | wc -l)" -eq 0 ]; then
- if [[ ! -z $(apt-cache --names-only search ^libssl1.0.2$) ]]; then
- # Debian 9
- package_list="${package_list} libssl1.0.2"
- elif [[ ! -z $(apt-cache --names-only search ^libssl1.0.0$) ]]; then
- # Ubuntu 18.04, 16.04, earlier
- package_list="${package_list} libssl1.0.0"
- fi
- fi
-
- echo "Packages to verify are installed: ${package_list}"
- apt-get -y install --no-install-recommends ${package_list} 2> >( grep -v 'debconf: delaying package configuration, since apt-utils is not installed' >&2 )
-
- # Install git if not already installed (may be more recent than distro version)
- if ! type git > /dev/null 2>&1; then
- apt-get -y install --no-install-recommends git
- fi
-
- PACKAGES_ALREADY_INSTALLED="true"
-fi
-
-# Get to latest versions of all packages
-if [ "${UPGRADE_PACKAGES}" = "true" ]; then
- apt_get_update_if_needed
- apt-get -y upgrade --no-install-recommends
- apt-get autoremove -y
-fi
-
-# Ensure at least the en_US.UTF-8 UTF-8 locale is available.
-# Common need for both applications and things like the agnoster ZSH theme.
-if [ "${LOCALE_ALREADY_SET}" != "true" ] && ! grep -o -E '^\s*en_US.UTF-8\s+UTF-8' /etc/locale.gen > /dev/null; then
- echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
- locale-gen
- LOCALE_ALREADY_SET="true"
-fi
-
-# Create or update a non-root user to match UID/GID.
-group_name="${USERNAME}"
-if id -u ${USERNAME} > /dev/null 2>&1; then
- # User exists, update if needed
- if [ "${USER_GID}" != "automatic" ] && [ "$USER_GID" != "$(id -g $USERNAME)" ]; then
- group_name="$(id -gn $USERNAME)"
- groupmod --gid $USER_GID ${group_name}
- usermod --gid $USER_GID $USERNAME
- fi
- if [ "${USER_UID}" != "automatic" ] && [ "$USER_UID" != "$(id -u $USERNAME)" ]; then
- usermod --uid $USER_UID $USERNAME
- fi
-else
- # Create user
- if [ "${USER_GID}" = "automatic" ]; then
- groupadd $USERNAME
- else
- groupadd --gid $USER_GID $USERNAME
- fi
- if [ "${USER_UID}" = "automatic" ]; then
- useradd -s /bin/bash --gid $USERNAME -m $USERNAME
- else
- useradd -s /bin/bash --uid $USER_UID --gid $USERNAME -m $USERNAME
- fi
-fi
-
-# Add sudo support for non-root user
-if [ "${USERNAME}" != "root" ] && [ "${EXISTING_NON_ROOT_USER}" != "${USERNAME}" ]; then
- echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME
- chmod 0440 /etc/sudoers.d/$USERNAME
- EXISTING_NON_ROOT_USER="${USERNAME}"
-fi
-
-# ** Shell customization section **
-if [ "${USERNAME}" = "root" ]; then
- user_rc_path="/root"
-else
- user_rc_path="/home/${USERNAME}"
-fi
-
-# Restore user .bashrc defaults from skeleton file if it doesn't exist or is empty
-if [ ! -f "${user_rc_path}/.bashrc" ] || [ ! -s "${user_rc_path}/.bashrc" ] ; then
- cp /etc/skel/.bashrc "${user_rc_path}/.bashrc"
-fi
-
-# Restore user .profile defaults from skeleton file if it doesn't exist or is empty
-if [ ! -f "${user_rc_path}/.profile" ] || [ ! -s "${user_rc_path}/.profile" ] ; then
- cp /etc/skel/.profile "${user_rc_path}/.profile"
-fi
-
-# .bashrc/.zshrc snippet
-rc_snippet="$(cat << 'EOF'
-
-if [ -z "${USER}" ]; then export USER=$(whoami); fi
-if [[ "${PATH}" != *"$HOME/.local/bin"* ]]; then export PATH="${PATH}:$HOME/.local/bin"; fi
-
-# Display optional first run image specific notice if configured and terminal is interactive
-if [ -t 1 ] && [[ "${TERM_PROGRAM}" = "vscode" || "${TERM_PROGRAM}" = "codespaces" ]] && [ ! -f "$HOME/.config/vscode-dev-containers/first-run-notice-already-displayed" ]; then
- if [ -f "/usr/local/etc/vscode-dev-containers/first-run-notice.txt" ]; then
- cat "/usr/local/etc/vscode-dev-containers/first-run-notice.txt"
- elif [ -f "/workspaces/.codespaces/shared/first-run-notice.txt" ]; then
- cat "/workspaces/.codespaces/shared/first-run-notice.txt"
- fi
- mkdir -p "$HOME/.config/vscode-dev-containers"
- # Mark first run notice as displayed after 10s to avoid problems with fast terminal refreshes hiding it
- ((sleep 10s; touch "$HOME/.config/vscode-dev-containers/first-run-notice-already-displayed") &)
-fi
-
-# Set the default git editor if not already set
-if [ -z "$(git config --get core.editor)" ] && [ -z "${GIT_EDITOR}" ]; then
- if [ "${TERM_PROGRAM}" = "vscode" ]; then
- if [[ -n $(command -v code-insiders) && -z $(command -v code) ]]; then
- export GIT_EDITOR="code-insiders --wait"
- else
- export GIT_EDITOR="code --wait"
- fi
- fi
-fi
-
-EOF
-)"
-
-# code shim, it fallbacks to code-insiders if code is not available
-cat << 'EOF' > /usr/local/bin/code
-#!/bin/sh
-
-get_in_path_except_current() {
- which -a "$1" | grep -A1 "$0" | grep -v "$0"
-}
-
-code="$(get_in_path_except_current code)"
-
-if [ -n "$code" ]; then
- exec "$code" "$@"
-elif [ "$(command -v code-insiders)" ]; then
- exec code-insiders "$@"
-else
- echo "code or code-insiders is not installed" >&2
- exit 127
-fi
-EOF
-chmod +x /usr/local/bin/code
-
-# systemctl shim - tells people to use 'service' if systemd is not running
-cat << 'EOF' > /usr/local/bin/systemctl
-#!/bin/sh
-set -e
-if [ -d "/run/systemd/system" ]; then
- exec /bin/systemctl "$@"
-else
- echo '\n"systemd" is not running in this container due to its overhead.\nUse the "service" command to start services instead. e.g.: \n\nservice --status-all'
-fi
-EOF
-chmod +x /usr/local/bin/systemctl
-
-# Codespaces bash and OMZ themes - partly inspired by https://github.com/ohmyzsh/ohmyzsh/blob/master/themes/robbyrussell.zsh-theme
-codespaces_bash="$(cat \
-<<'EOF'
-
-# Codespaces bash prompt theme
-__bash_prompt() {
- local userpart='`export XIT=$? \
- && [ ! -z "${GITHUB_USER}" ] && echo -n "\[\033[0;32m\]@${GITHUB_USER} " || echo -n "\[\033[0;32m\]\u " \
- && [ "$XIT" -ne "0" ] && echo -n "\[\033[1;31m\]➜" || echo -n "\[\033[0m\]➜"`'
- local gitbranch='`\
- if [ "$(git config --get codespaces-theme.hide-status 2>/dev/null)" != 1 ]; then \
- export BRANCH=$(git symbolic-ref --short HEAD 2>/dev/null || git rev-parse --short HEAD 2>/dev/null); \
- if [ "${BRANCH}" != "" ]; then \
- echo -n "\[\033[0;36m\](\[\033[1;31m\]${BRANCH}" \
- && if git ls-files --error-unmatch -m --directory --no-empty-directory -o --exclude-standard ":/*" > /dev/null 2>&1; then \
- echo -n " \[\033[1;33m\]✗"; \
- fi \
- && echo -n "\[\033[0;36m\]) "; \
- fi; \
- fi`'
- local lightblue='\[\033[1;34m\]'
- local removecolor='\[\033[0m\]'
- PS1="${userpart} ${lightblue}\w ${gitbranch}${removecolor}\$ "
- unset -f __bash_prompt
-}
-__bash_prompt
-
-EOF
-)"
-
-codespaces_zsh="$(cat \
-<<'EOF'
-# Codespaces zsh prompt theme
-__zsh_prompt() {
- local prompt_username
- if [ ! -z "${GITHUB_USER}" ]; then
- prompt_username="@${GITHUB_USER}"
- else
- prompt_username="%n"
- fi
- PROMPT="%{$fg[green]%}${prompt_username} %(?:%{$reset_color%}➜ :%{$fg_bold[red]%}➜ )" # User/exit code arrow
- PROMPT+='%{$fg_bold[blue]%}%(5~|%-1~/…/%3~|%4~)%{$reset_color%} ' # cwd
- PROMPT+='$([ "$(git config --get codespaces-theme.hide-status 2>/dev/null)" != 1 ] && git_prompt_info)' # Git status
- PROMPT+='%{$fg[white]%}$ %{$reset_color%}'
- unset -f __zsh_prompt
-}
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[cyan]%}(%{$fg_bold[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg_bold[yellow]%}✗%{$fg_bold[cyan]%})"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[cyan]%})"
-__zsh_prompt
-
-EOF
-)"
-
-# Add RC snippet and custom bash prompt
-if [ "${RC_SNIPPET_ALREADY_ADDED}" != "true" ]; then
- echo "${rc_snippet}" >> /etc/bash.bashrc
- echo "${codespaces_bash}" >> "${user_rc_path}/.bashrc"
- echo 'export PROMPT_DIRTRIM=4' >> "${user_rc_path}/.bashrc"
- if [ "${USERNAME}" != "root" ]; then
- echo "${codespaces_bash}" >> "/root/.bashrc"
- echo 'export PROMPT_DIRTRIM=4' >> "/root/.bashrc"
- fi
- chown ${USERNAME}:${group_name} "${user_rc_path}/.bashrc"
- RC_SNIPPET_ALREADY_ADDED="true"
-fi
-
-# Optionally install and configure zsh and Oh My Zsh!
-if [ "${INSTALL_ZSH}" = "true" ]; then
- if ! type zsh > /dev/null 2>&1; then
- apt_get_update_if_needed
- apt-get install -y zsh
- fi
- if [ "${ZSH_ALREADY_INSTALLED}" != "true" ]; then
- echo "${rc_snippet}" >> /etc/zsh/zshrc
- ZSH_ALREADY_INSTALLED="true"
- fi
-
- # Adapted, simplified inline Oh My Zsh! install steps that adds, defaults to a codespaces theme.
- # See https://github.com/ohmyzsh/ohmyzsh/blob/master/tools/install.sh for official script.
- oh_my_install_dir="${user_rc_path}/.oh-my-zsh"
- if [ ! -d "${oh_my_install_dir}" ] && [ "${INSTALL_OH_MYS}" = "true" ]; then
- template_path="${oh_my_install_dir}/templates/zshrc.zsh-template"
- user_rc_file="${user_rc_path}/.zshrc"
- umask g-w,o-w
- mkdir -p ${oh_my_install_dir}
- git clone --depth=1 \
- -c core.eol=lf \
- -c core.autocrlf=false \
- -c fsck.zeroPaddedFilemode=ignore \
- -c fetch.fsck.zeroPaddedFilemode=ignore \
- -c receive.fsck.zeroPaddedFilemode=ignore \
- "https://github.com/ohmyzsh/ohmyzsh" "${oh_my_install_dir}" 2>&1
- echo -e "$(cat "${template_path}")\nDISABLE_AUTO_UPDATE=true\nDISABLE_UPDATE_PROMPT=true" > ${user_rc_file}
- sed -i -e 's/ZSH_THEME=.*/ZSH_THEME="codespaces"/g' ${user_rc_file}
-
- mkdir -p ${oh_my_install_dir}/custom/themes
- echo "${codespaces_zsh}" > "${oh_my_install_dir}/custom/themes/codespaces.zsh-theme"
- # Shrink git while still enabling updates
- cd "${oh_my_install_dir}"
- git repack -a -d -f --depth=1 --window=1
- # Copy to non-root user if one is specified
- if [ "${USERNAME}" != "root" ]; then
- cp -rf "${user_rc_file}" "${oh_my_install_dir}" /root
- chown -R ${USERNAME}:${group_name} "${user_rc_path}"
- fi
- fi
-fi
-
-# Persist image metadata info, script if meta.env found in same directory
-meta_info_script="$(cat << 'EOF'
-#!/bin/sh
-. /usr/local/etc/vscode-dev-containers/meta.env
-
-# Minimal output
-if [ "$1" = "version" ] || [ "$1" = "image-version" ]; then
- echo "${VERSION}"
- exit 0
-elif [ "$1" = "release" ]; then
- echo "${GIT_REPOSITORY_RELEASE}"
- exit 0
-elif [ "$1" = "content" ] || [ "$1" = "content-url" ] || [ "$1" = "contents" ] || [ "$1" = "contents-url" ]; then
- echo "${CONTENTS_URL}"
- exit 0
-fi
-
-#Full output
-echo
-echo "Development container image information"
-echo
-if [ ! -z "${VERSION}" ]; then echo "- Image version: ${VERSION}"; fi
-if [ ! -z "${DEFINITION_ID}" ]; then echo "- Definition ID: ${DEFINITION_ID}"; fi
-if [ ! -z "${VARIANT}" ]; then echo "- Variant: ${VARIANT}"; fi
-if [ ! -z "${GIT_REPOSITORY}" ]; then echo "- Source code repository: ${GIT_REPOSITORY}"; fi
-if [ ! -z "${GIT_REPOSITORY_RELEASE}" ]; then echo "- Source code release/branch: ${GIT_REPOSITORY_RELEASE}"; fi
-if [ ! -z "${BUILD_TIMESTAMP}" ]; then echo "- Timestamp: ${BUILD_TIMESTAMP}"; fi
-if [ ! -z "${CONTENTS_URL}" ]; then echo && echo "More info: ${CONTENTS_URL}"; fi
-echo
-EOF
-)"
-if [ -f "${SCRIPT_DIR}/meta.env" ]; then
- mkdir -p /usr/local/etc/vscode-dev-containers/
- cp -f "${SCRIPT_DIR}/meta.env" /usr/local/etc/vscode-dev-containers/meta.env
- echo "${meta_info_script}" > /usr/local/bin/devcontainer-info
- chmod +x /usr/local/bin/devcontainer-info
-fi
-
-# Write marker file
-mkdir -p "$(dirname "${MARKER_FILE}")"
-echo -e "\
- PACKAGES_ALREADY_INSTALLED=${PACKAGES_ALREADY_INSTALLED}\n\
- LOCALE_ALREADY_SET=${LOCALE_ALREADY_SET}\n\
- EXISTING_NON_ROOT_USER=${EXISTING_NON_ROOT_USER}\n\
- RC_SNIPPET_ALREADY_ADDED=${RC_SNIPPET_ALREADY_ADDED}\n\
- ZSH_ALREADY_INSTALLED=${ZSH_ALREADY_INSTALLED}" > "${MARKER_FILE}"
-
-echo "Done!" \ No newline at end of file
diff --git a/.devcontainer/scripts/getting-started.sh b/.devcontainer/scripts/getting-started.sh
deleted file mode 100644
index cea60dc88..000000000
--- a/.devcontainer/scripts/getting-started.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-echo "To get started, login to GitHub and clone bun's GitHub repo into /build/bun"
-echo "If it fails to open a browser, login with a Personal Access Token instead"
-echo "# First time setup"
-echo "gh auth login"
-echo "gh repo clone oven-sh/bun . -- --depth=1 --progress -j8"
-echo ""
-echo "# Compile bun dependencies (zig is already compiled)"
-echo "make devcontainer"
-echo ""
-echo "# Build bun for development"
-echo "make dev"
-echo ""
-echo "# Run bun"
-echo "bun-debug"
diff --git a/.devcontainer/scripts/github.sh b/.devcontainer/scripts/github.sh
deleted file mode 100644
index 0e0f2dbac..000000000
--- a/.devcontainer/scripts/github.sh
+++ /dev/null
@@ -1,207 +0,0 @@
-#!/usr/bin/env bash
-#-------------------------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
-#-------------------------------------------------------------------------------------------------------------
-#
-# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/github.md
-# Maintainer: The VS Code and Codespaces Teams
-#
-# Syntax: ./github-debian.sh [version]
-
-CLI_VERSION=${1:-"latest"}
-
-GITHUB_CLI_ARCHIVE_GPG_KEY=C99B11DEB97541F0
-GPG_KEY_SERVERS="keyserver hkp://keyserver.ubuntu.com:80
-keyserver hkps://keys.openpgp.org
-keyserver hkp://keyserver.pgp.com"
-
-set -e
-
-if [ "$(id -u)" -ne 0 ]; then
- echo -e 'Script must be run as root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.'
- exit 1
-fi
-
-# Get central common setting
-get_common_setting() {
- if [ "${common_settings_file_loaded}" != "true" ]; then
- curl -sfL "https://aka.ms/vscode-dev-containers/script-library/settings.env" -o /tmp/vsdc-settings.env 2>/dev/null || echo "Could not download settings file. Skipping."
- common_settings_file_loaded=true
- fi
- if [ -f "/tmp/vsdc-settings.env" ]; then
- local multi_line=""
- if [ "$2" = "true" ]; then multi_line="-z"; fi
- local result="$(grep ${multi_line} -oP "$1=\"?\K[^\"]+" /tmp/vsdc-settings.env | tr -d '\0')"
- if [ ! -z "${result}" ]; then declare -g $1="${result}"; fi
- fi
- echo "$1=${!1}"
-}
-
-# Import the specified key in a variable name passed in as
-receive_gpg_keys() {
- get_common_setting $1
- local keys=${!1}
- get_common_setting GPG_KEY_SERVERS true
-
- # Use a temporary locaiton for gpg keys to avoid polluting image
- export GNUPGHOME="/tmp/tmp-gnupg"
- mkdir -p ${GNUPGHOME}
- chmod 700 ${GNUPGHOME}
- echo -e "disable-ipv6\n${GPG_KEY_SERVERS}" >${GNUPGHOME}/dirmngr.conf
- # GPG key download sometimes fails for some reason and retrying fixes it.
- local retry_count=0
- local gpg_ok="false"
- set +e
- until [ "${gpg_ok}" = "true" ] || [ "${retry_count}" -eq "5" ]; do
- echo "(*) Downloading GPG key..."
- (echo "${keys}" | xargs -n 1 gpg --recv-keys) 2>&1 && gpg_ok="true"
- if [ "${gpg_ok}" != "true" ]; then
- echo "(*) Failed getting key, retring in 10s..."
- ((retry_count++))
- sleep 10s
- fi
- done
- set -e
- if [ "${gpg_ok}" = "false" ]; then
- echo "(!) Failed to get gpg key."
- exit 1
- fi
-}
-
-# Figure out correct version of a three part version number is not passed
-find_version_from_git_tags() {
- local variable_name=$1
- local requested_version=${!variable_name}
- if [ "${requested_version}" = "none" ]; then return; fi
- local repository=$2
- local prefix=${3:-"tags/v"}
- local separator=${4:-"."}
- local last_part_optional=${5:-"false"}
- if [ "$(echo "${requested_version}" | grep -o "." | wc -l)" != "2" ]; then
- local escaped_separator=${separator//./\\.}
- local last_part
- if [ "${last_part_optional}" = "true" ]; then
- last_part="(${escaped_separator}[0-9]+)?"
- else
- last_part="${escaped_separator}[0-9]+"
- fi
- local regex="${prefix}\\K[0-9]+${escaped_separator}[0-9]+${last_part}$"
- local version_list="$(git ls-remote --tags ${repository} | grep -oP "${regex}" | tr -d ' ' | tr "${separator}" "." | sort -rV)"
- if [ "${requested_version}" = "latest" ] || [ "${requested_version}" = "current" ] || [ "${requested_version}" = "lts" ]; then
- declare -g ${variable_name}="$(echo "${version_list}" | head -n 1)"
- else
- set +e
- declare -g ${variable_name}="$(echo "${version_list}" | grep -E -m 1 "^${requested_version//./\\.}([\\.\\s]|$)")"
- set -e
- fi
- fi
- if [ -z "${!variable_name}" ] || ! echo "${version_list}" | grep "^${!variable_name//./\\.}$" >/dev/null 2>&1; then
- echo -e "Invalid ${variable_name} value: ${requested_version}\nValid values:\n${version_list}" >&2
- exit 1
- fi
- echo "${variable_name}=${!variable_name}"
-}
-
-# Import the specified key in a variable name passed in as
-receive_gpg_keys() {
- get_common_setting $1
- local keys=${!1}
- get_common_setting GPG_KEY_SERVERS true
- local keyring_args=""
- if [ ! -z "$2" ]; then
- keyring_args="--no-default-keyring --keyring $2"
- fi
-
- # Use a temporary locaiton for gpg keys to avoid polluting image
- export GNUPGHOME="/tmp/tmp-gnupg"
- mkdir -p ${GNUPGHOME}
- chmod 700 ${GNUPGHOME}
- echo -e "disable-ipv6\n${GPG_KEY_SERVERS}" >${GNUPGHOME}/dirmngr.conf
- # GPG key download sometimes fails for some reason and retrying fixes it.
- local retry_count=0
- local gpg_ok="false"
- set +e
- until [ "${gpg_ok}" = "true" ] || [ "${retry_count}" -eq "5" ]; do
- echo "(*) Downloading GPG key..."
- (echo "${keys}" | xargs -n 1 gpg -q ${keyring_args} --recv-keys) 2>&1 && gpg_ok="true"
- if [ "${gpg_ok}" != "true" ]; then
- echo "(*) Failed getting key, retring in 10s..."
- ((retry_count++))
- sleep 10s
- fi
- done
- set -e
- if [ "${gpg_ok}" = "false" ]; then
- echo "(!) Failed to get gpg key."
- exit 1
- fi
-}
-
-# Function to run apt-get if needed
-apt_get_update_if_needed() {
- if [ ! -d "/var/lib/apt/lists" ] || [ "$(ls /var/lib/apt/lists/ | wc -l)" = "0" ]; then
- echo "Running apt-get update..."
- apt-get update
- else
- echo "Skipping apt-get update."
- fi
-}
-
-# Checks if packages are installed and installs them if not
-check_packages() {
- if ! dpkg -s "$@" >/dev/null 2>&1; then
- apt_get_update_if_needed
- apt-get -y install --no-install-recommends "$@"
- fi
-}
-
-# Fall back on direct download if no apt package exists
-# Fetches .deb file to be installed with dpkg
-install_deb_using_github() {
- check_packages wget
- arch=$(dpkg --print-architecture)
-
- find_version_from_git_tags CLI_VERSION https://github.com/cli/cli
- cli_filename="gh_${CLI_VERSION}_linux_${arch}.deb"
-
- mkdir -p /tmp/ghcli
- pushd /tmp/ghcli
- wget https://github.com/cli/cli/releases/download/v${CLI_VERSION}/${cli_filename}
- dpkg -i /tmp/ghcli/${cli_filename}
- popd
- rm -rf /tmp/ghcli
-}
-
-export DEBIAN_FRONTEND=noninteractive
-
-# Install curl, apt-transport-https, curl, gpg, or dirmngr, git if missing
-check_packages curl ca-certificates apt-transport-https dirmngr gnupg2
-if ! type git >/dev/null 2>&1; then
- apt_get_update_if_needed
- apt-get -y install --no-install-recommends git
-fi
-
-# Soft version matching
-if [ "${CLI_VERSION}" != "latest" ] && [ "${CLI_VERSION}" != "lts" ] && [ "${CLI_VERSION}" != "stable" ]; then
- find_version_from_git_tags CLI_VERSION "https://github.com/cli/cli"
- version_suffix="=${CLI_VERSION}"
-else
- version_suffix=""
-fi
-
-# Install the GitHub CLI
-echo "Downloading github CLI..."
-
-install_deb_using_github
-
-# Method below does not work until cli/cli#6175 is fixed
-# # Import key safely (new method rather than deprecated apt-key approach) and install
-# . /etc/os-release
-# receive_gpg_keys GITHUB_CLI_ARCHIVE_GPG_KEY /usr/share/keyrings/githubcli-archive-keyring.gpg
-# echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" >/etc/apt/sources.list.d/github-cli.list
-# apt-get update
-# apt-get -y install "gh${version_suffix}"
-# rm -rf "/tmp/gh/gnupg"
-
-echo "Done!"
diff --git a/.devcontainer/scripts/nice.sh b/.devcontainer/scripts/nice.sh
deleted file mode 100644
index 8447a0dcb..000000000
--- a/.devcontainer/scripts/nice.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-chsh -s $(which zsh)
-sh -c "$(curl -fsSL https://starship.rs/install.sh) -- --platform linux_musl" -- --yes
-echo "eval \"$(starship init zsh)\"" >>~/.zshrc
-
-curl https://github.com/Jarred-Sumner/vscode-zig/releases/download/march18/zig-0.2.5.vsix >/home/ubuntu/vscode-zig.vsix
diff --git a/.devcontainer/scripts/zig-env.sh b/.devcontainer/scripts/zig-env.sh
deleted file mode 100644
index b4708e506..000000000
--- a/.devcontainer/scripts/zig-env.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-git clone https://github.com/zigtools/zls /home/ubuntu/zls
-cd /home/ubuntu/zls
-git checkout 30869d7d8741656448e46fbf14f14da9ca7e5a21
-git submodule update --init --recursive --progress --depth=1
-zig build -Doptimize=ReleaseFast
diff --git a/.devcontainer/workspace.code-workspace b/.devcontainer/workspace.code-workspace
deleted file mode 100644
index 1fbb9a5c7..000000000
--- a/.devcontainer/workspace.code-workspace
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "folders": [
- {
- // Source code
- "name": "bun",
- "path": "bun"
- },
- ]
-} \ No newline at end of file
diff --git a/.devcontainer/zls.json b/.devcontainer/zls.json
deleted file mode 100644
index 4fb24eaa3..000000000
--- a/.devcontainer/zls.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "zig_exe_path": "/build/zig/zig",
- "enable_snippets": true,
- "warn_style": false,
- "enable_semantic_tokens": true,
- "operator_completions": true,
- "include_at_in_builtins": false,
- "max_detail_length": 1048576
-}
diff --git a/Dockerfile.devcontainer b/Dockerfile.devcontainer
deleted file mode 100644
index 2913455ae..000000000
--- a/Dockerfile.devcontainer
+++ /dev/null
@@ -1,126 +0,0 @@
-ARG DEBIAN_FRONTEND=noninteractive
-ARG GITHUB_WORKSPACE=/build
-ARG BUILDARCH=amd64
-ARG ARCH=x86_64
-ARG ZIG_PATH=${GITHUB_WORKSPACE}/zig
-ARG WEBKIT_DIR=${GITHUB_WORKSPACE}/bun-webkit
-ARG BUN_RELEASE_DIR=${GITHUB_WORKSPACE}/bun-release
-ARG BUN_DEPS_OUT_DIR=${GITHUB_WORKSPACE}/bun-deps
-ARG BUN_DIR=${GITHUB_WORKSPACE}/bun
-ARG BUN_PACKAGES_DIR=${BUN_DIR}/packages
-ARG ZIG_VERSION="0.11.0-dev.1783+436e99d13"
-
-ARG ZIG_FOLDERNAME=zig-linux-${ARCH}-${ZIG_VERSION}
-ARG ZIG_FILENAME=${ZIG_FOLDERNAME}.tar.xz
-ARG ZIG_URL="https://ziglang.org/builds/${ZIG_FILENAME}"
-
-FROM --platform=linux/${BUILDARCH} ubuntu:22.04 as bun.devcontainer
-
-ARG DEBIAN_FRONTEND
-ARG GITHUB_WORKSPACE
-ARG BUILDARCH
-ARG ZIG_PATH
-ARG WEBKIT_DIR
-ARG BUN_RELEASE_DIR
-ARG BUN_DEPS_OUT_DIR
-ARG BUN_DIR
-ARG BUN_PACKAGES_DIR
-
-ENV WEBKIT_OUT_DIR ${WEBKIT_DIR}
-ENV PATH "$ZIG_PATH:$PATH"
-ENV JSC_BASE_DIR $WEBKIT_OUT_DIR
-ENV LIB_ICU_PATH ${WEBKIT_OUT_DIR}/lib
-ENV BUN_RELEASE_DIR ${BUN_RELEASE_DIR}
-ENV PATH "${BUN_PACKAGES_DIR}/bun-linux-x64:${BUN_PACKAGES_DIR}/bun-linux-aarch64:${BUN_PACKAGES_DIR}/debug-bun-linux-x64:${BUN_PACKAGES_DIR}/debug-bun-linux-aarch64:$PATH"
-ENV PATH "/home/ubuntu/zls/zig-out/bin:$PATH"
-ENV BUN_INSTALL /home/ubuntu/.bun
-ENV XDG_CONFIG_HOME /home/ubuntu/.config
-
-WORKDIR ${GITHUB_WORKSPACE}
-
-RUN apt-get update && \
- apt-get install --no-install-recommends -y wget gnupg2 curl lsb-release wget software-properties-common && \
- add-apt-repository ppa:longsleep/golang-backports && \
- wget https://apt.llvm.org/llvm.sh --no-check-certificate && \
- chmod +x llvm.sh && \
- ./llvm.sh 15 && \
- curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \
- apt-get update && \
- apt-get install --no-install-recommends -y \
- ca-certificates \
- curl \
- gnupg2 \
- software-properties-common \
- cmake \
- build-essential \
- git \
- libssl-dev \
- ruby \
- liblld-15-dev \
- libclang-15-dev \
- nodejs \
- gcc \
- g++ \
- clang-15 \
- clang-format-15 \
- libc++-15-dev \
- libc++abi-15-dev \
- lld-15 \
- libicu-dev \
- wget \
- rustc \
- cargo \
- unzip \
- tar \
- golang-go ninja-build pkg-config automake autoconf libtool curl && \
- update-alternatives --install /usr/bin/cc cc /usr/bin/clang-15 90 && \
- update-alternatives --install /usr/bin/cpp cpp /usr/bin/clang++-15 90 && \
- update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-15 90 && \
- npm install -g esbuild
-
-ENV CC=clang-15
-ENV CXX=clang++-15
-ENV ZIG "${ZIG_PATH}/zig"
-
-WORKDIR $GITHUB_WORKSPACE
-
-RUN cd / && mkdir -p $BUN_RELEASE_DIR $BUN_DEPS_OUT_DIR ${BUN_DIR} ${BUN_DEPS_OUT_DIR}
-
-WORKDIR $GITHUB_WORKSPACE
-
-
-ARG ZIG_FOLDERNAME
-ARG ZIG_FILENAME
-ARG ZIG_URL
-
-ADD $ZIG_URL .
-RUN tar -xf ${ZIG_FILENAME} && \
- rm ${ZIG_FILENAME} && \
- mv ${ZIG_FOLDERNAME} ${ZIG_PATH};
-
-RUN cd $GITHUB_WORKSPACE && \
- curl -o bun-webkit-linux-$BUILDARCH.tar.gz -L https://github.com/oven-sh/WebKit/releases/download/feb25/bun-webkit-linux-$BUILDARCH.tar.gz && \
- tar -xzf bun-webkit-linux-$BUILDARCH.tar.gz && \
- rm bun-webkit-linux-$BUILDARCH.tar.gz && \
- cat $WEBKIT_OUT_DIR/include/cmakeconfig.h > /dev/null
-
-RUN apt-get -y update && update-alternatives --install /usr/bin/lldb lldb /usr/bin/lldb-15 90
-
-COPY .devcontainer/workspace.code-workspace $GITHUB_WORKSPACE/workspace.code-workspace
-COPY .devcontainer/zls.json $GITHUB_WORKSPACE/workspace.code-workspace
-COPY .devcontainer/limits.conf /etc/security/limits.conf
-COPY ".devcontainer/scripts/" /scripts/
-COPY ".devcontainer/scripts/getting-started.sh" $GITHUB_WORKSPACE/getting-started.sh
-COPY ".devcontainer/README.md" $GITHUB_WORKSPACE/README.md
-
-ENV JSC_BASE_DIR=$WEBKIT_DIR
-ENV WEBKIT_RELEASE_DIR=$WEBKIT_DIR
-ENV WEBKIT_DEBUG_DIR=$WEBKIT_DIR
-ENV WEBKIT_RELEASE_DIR_LTO=$WEBKIT_DIR
-
-RUN mkdir -p /home/ubuntu/.bun /home/ubuntu/.config $GITHUB_WORKSPACE/bun && \
- bash /scripts/common-debian.sh && \
- bash /scripts/github.sh && \
- bash /scripts/nice.sh && \
- bash /scripts/zig-env.sh
-COPY .devcontainer/zls.json /home/ubuntu/.config/zls.json
diff --git a/Makefile b/Makefile
index 14959241f..a771393ec 100644
--- a/Makefile
+++ b/Makefile
@@ -918,25 +918,6 @@ jsc-bindings: headers bindings
clone-submodules:
git -c submodule."src/bun.js/WebKit".update=none submodule update --init --recursive --depth=1 --progress
-.PHONY: devcontainer
-devcontainer: $(OBJ_DIR) $(DEBUG_OBJ_DIR) clone-submodules mimalloc zlib libarchive boringssl picohttp identifier-cache node-fallbacks npm-install api analytics bun_error fallback_decoder bindings uws lolhtml usockets tinycc c-ares runtime_js_dev sqlite
-
-.PHONY: devcontainer-build
-devcontainer-build:
- DOCKER_BUILDARCH="$(DOCKER_BUILDARCH)" devcontainer build --workspace-folder .
-
-.PHONY: devcontainer-up
-devcontainer-up:
- DOCKER_BUILDARCH="$(DOCKER_BUILDARCH)" devcontainer up --workspace-folder .
-
-.PHONY: devcontainer-rebuild
-devcontainer-rebuild:
- DOCKER_BUILDARCH="$(DOCKER_BUILDARCH)" devcontainer up --workspace-folder . --remove-existing-container
-
-.PHONY: devcontainer-sh
-devcontainer-sh:
- DOCKER_BUILDARCH="$(DOCKER_BUILDARCH)" devcontainer exec --workspace-folder . zsh
-
CLANG_FORMAT := $(shell command -v clang-format 2> /dev/null)
.PHONY: headers
diff --git a/docs/project/development.md b/docs/project/development.md
index 557809918..c077de9b7 100644
--- a/docs/project/development.md
+++ b/docs/project/development.md
@@ -183,76 +183,6 @@ You'll need a very recent version of Valgrind due to DWARF 5 debug symbols. You
valgrind --fair-sched=try --track-origins=yes bun-debug <args>
```
-## Docker Devcontainer
-
-Bun has a [Dev Container](https://containers.dev), which can be used to quickly get a development environment. We do not recommend using this, as the setup instructions above are much more complete.
-
-To develop on Linux/Windows, [Docker](https://www.docker.com) is required. If using WSL on Windows, it is recommended to use [Docker Desktop](https://docs.microsoft.com/en-us/windows/wsl/tutorials/wsl-containers) for its WSL2 integration.
-
-### VSCode
-
-If you're using VSCode, you'll need to have the [Dev Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) extension installed.
-
-To get started, open VS Code in the `bun` repository. The first time you try to open the dev container, the extension will automatically build it for you, based on [`Dockerfile.devcontainer`](https://github.com/oven-sh/bun/blob/main/Dockerfile.devcontainer).
-
-To open the dev container, open the command palette (`Ctrl` + `Shift` + `P`) and run: `Dev Containers: Reopen in Container`. To later rebuild it (only needed when the devcontainer itself changes, not the Bun code), run: `Dev Containers: Rebuild and Reopen in Container`.
-
-### Other editors and CLI
-
-If you're using another editor or want to manually control the dev container from the command line or a script, you'll need to install the [Dev Container CLI](https://www.npmjs.com/package/@devcontainers/cli): `npm install -g @devcontainers/cli`.
-
-To create and start the dev container, in the `bun` repository, locally run:
-
-```bash
-# `make devcontainer-<command>` should be equivalent
-# to `devcontainer <command>`, it just sets the architecture
-# so if you're on ARM64, it'll do the right thing
-$ make devcontainer-up
-```
-
-To just build the dev container image, run:
-
-```bash
-$ make devcontainer-build
-```
-
-To start a shell inside the container, run:
-
-```bash
-$ make devcontainer-sh
-
-# if it attaches to the container non-interactively,
-# instead use the regular docker exec command:
-$ docker exec -it <container-name/id> zsh
-```
-
-### Cloning
-
-You will then need to clone the GitHub repository inside that container.
-
-```bash
-# First time setup
-$ gh auth login # if it fails to open a browser, use Personal Access Token instead
-$ gh repo clone oven-sh/bun . -- --depth=1 --progress -j8
-```
-
-### Building
-
-```bash
-# Compile Bun dependencies (zig is already compiled)
-$ make devcontainer
-
-# It initializes and updates all submodules except WebKit, because WebKit
-# takes a while and it's already compiled for you. To do it manually, use:
-$ git -c submodule."src/bun.js/WebKit".update=none submodule update --init --recursive --depth=1 --progress
-
-# Build Bun for development
-$ make dev
-
-# Run Bun
-$ bun-debug
-```
-
## Troubleshooting
### libarchive