aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2024-02-10 22:01:02 -0500
committersotech117 <michael_foiani@brown.edu>2024-02-10 22:01:02 -0500
commitb2d2b864b79789259c3083f60e1b852671afdf5f (patch)
treee0e344b9a26b061a030168e0866eecc0cb4ea014
parent84290c70c73882547e4b342e2573b4f79a1c3924 (diff)
add dev container for development
-rw-r--r--.devcontainer/Dockerfile4
-rw-r--r--.devcontainer/devcontainer.json4
2 files changed, 8 insertions, 0 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
new file mode 100644
index 0000000..e691dc9
--- /dev/null
+++ b/.devcontainer/Dockerfile
@@ -0,0 +1,4 @@
+FROM --platform=linux/x86_64 mcr.microsoft.com/devcontainers/base:ubuntu-18.04
+LABEL authors="sotech117"
+
+RUN sudo apt-get update; sudo apt-get install python2.7 python-minimal cscope nasm make build-essential grub2-common qemu xorriso genisoimage xterm gdb -y \ No newline at end of file
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 0000000..9784a11
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,4 @@
+{
+ "name": "os-dev",
+ "build": { "dockerfile": "Dockerfile" }
+} \ No newline at end of file