Просмотр исходного кода

Specify specific source for pulling homebrew container (#2062)

- Since VS Code Dev container extention has a non-interactive shell, user
cannot select a specific image if there are multiple images under same
named authors.
- This fix ensures that images are only pulled from Docker Hub and no
interactive menu is presented.
- References: #1816, #1817
- Fixes #2043

Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
Avinal Kumar 3 лет назад
Родитель
Сommit
d6c72e3d33
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      .devcontainer/Dockerfile

+ 1 - 1
.devcontainer/Dockerfile

@@ -3,7 +3,7 @@
 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 
 ARG TAG=3.5.6
-FROM homebrew/brew:${TAG}
+FROM docker.io/homebrew/brew:${TAG}
 
 # Install libxcrypt using Homebrew.
 RUN brew install libxcrypt --overwrite