瀏覽代碼

fix building on macos M1
by using build-essential package instead gcc

Rodja Trappe 1 年之前
父節點
當前提交
0a8c9dff57
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      .devcontainer/Dockerfile

+ 1 - 1
.devcontainer/Dockerfile

@@ -9,7 +9,7 @@ ENV POETRY_VERSION=1.6.1 \
 
 
 # Install packages
 # Install packages
 RUN apt-get update && apt-get install --no-install-recommends -y \
 RUN apt-get update && apt-get install --no-install-recommends -y \
-    sudo git gcc chromium chromium-driver \
+    sudo git build-essential chromium chromium-driver \
     && rm -rf /var/lib/apt/lists/*
     && rm -rf /var/lib/apt/lists/*
 
 
 # Create remote user
 # Create remote user