Skip to content

Commit d6c72e3

Browse files
authored
Specify specific source for pulling homebrew container (carbon-language#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: carbon-language#1816, carbon-language#1817 - Fixes carbon-language#2043 Signed-off-by: Avinal Kumar <[email protected]>
1 parent b342fac commit d6c72e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
44

55
ARG TAG=3.5.6
6-
FROM homebrew/brew:${TAG}
6+
FROM docker.io/homebrew/brew:${TAG}
77

88
# Install libxcrypt using Homebrew.
99
RUN brew install libxcrypt --overwrite

0 commit comments

Comments
 (0)