From 2a70277888279360b774b683df34a30a8e27ef90 Mon Sep 17 00:00:00 2001 From: Liam Monninger <79056955+l-monninger@users.noreply.github.com> Date: Sun, 24 Sep 2023 00:20:08 -0700 Subject: [PATCH] [CONTAINERS] if dev container is m1 container, it should actually not run dev_setup --- docker/dev.dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/dev.dockerfile b/docker/dev.dockerfile index 0b9ab49d..41cedb13 100644 --- a/docker/dev.dockerfile +++ b/docker/dev.dockerfile @@ -12,6 +12,6 @@ RUN curl -fSsL -o install.sh https://raw.githubusercontent.com/movemntdev/M1/mai RUN chmod +x install.sh # Execute the script with the desired arguments -RUN ./install.sh --version ${VERSION} --dev +RUN ./install.sh --version ${VERSION} -CMD ["/bin/bash"] \ No newline at end of file +CMD ["/bin/bash"]