aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2024-02-11 09:49:25 +0000
committersotech117 <michael_foiani@brown.edu>2024-02-11 09:49:25 +0000
commit4d30899dfccb860b354409fcb23c11b158279ccf (patch)
tree5f578bc6643c8ddcdb2dd3ac58ce3e44245899f7
parentc2cebabba05eff0436faf90bbd691c1e36f7013c (diff)
make devcontainer work for developing on apple silicon
-rw-r--r--.devcontainer/Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 94ba240..690a1ce 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -1,4 +1,6 @@
FROM --platform=linux/x86_64 mcr.microsoft.com/devcontainers/base:ubuntu-22.04
LABEL authors="sotech117"
-RUN sudo apt-get update; sudo apt-get install python2.7 python2.7-minimal cscope nasm make build-essential grub2-common qemu xorriso genisoimage xterm gdb -y \ No newline at end of file
+RUN sudo apt-get update
+RUN sudo apt-get install python2.7 python2.7-minimal cscope nasm make build-essential grub2-common qemu qemu-system xorriso genisoimage xterm gdb -y
+RUN alias python2=python2.7 \ No newline at end of file