From 55532c0a5f5b3a8e42f9dca29314e112a998d945 Mon Sep 17 00:00:00 2001 From: 4yman <170770027+4yman-0@users.noreply.github.com> Date: Tue, 19 Nov 2024 20:06:53 +0100 Subject: [PATCH] Remove dockerfile from documentation (#4046) * Remove Dockerfile from CONTRIBUTING.md Remove two lines referencing an absent Dockerfile. * Remove Dockerfile from debugging.md Remove one phrase referencing an absent Dockerfile --- CONTRIBUTING.md | 3 --- docs/debugging.md | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5565be0d950..ba65d0ed1a0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,9 +62,6 @@ There are some pre-defined tasks in [tasks.json](.vscode/tasks.json) - Test - (there is no shortcut, you'll need to make one) - Runs `Cargo Test`. I personally set a shortcut of shift+cmd+option+T (or shift+ctrl+alt+T) -If you don't want to install everything on your machine, you can use the Dockerfile. -Start VSCode in container mode (you may need the docker container plugin) and use the Dockerfile. - ## Testing Boa provides its own test suite, and can also run the official ECMAScript test suite. To run the Boa test diff --git a/docs/debugging.md b/docs/debugging.md index c472456f0e0..feba3e6971f 100644 --- a/docs/debugging.md +++ b/docs/debugging.md @@ -110,8 +110,7 @@ more information [here][blog_debugging]. ### LLDB Manual debugging -You can also use rust-lldb. The `Dockerfile` already has this enabled, you -should be able to use that environment to run your code. +You can also use rust-lldb. You should be able to use that environment to run your code. ``` rust-lldb ./target/debug/boa [arguments]