Эх сурвалжийг харах

Run apt-get update and install together (#2192)

This is a recommended best practice: https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#apt-get
Jon Ross-Perkins 3 жил өмнө
parent
commit
f417be79d2

+ 3 - 2
.devcontainer/Dockerfile

@@ -9,8 +9,9 @@ FROM ubuntu:22.04
 #   golang: Used for Bazelisk and Buildifier.
 #   golang: Used for Bazelisk and Buildifier.
 #   python3: For Carbon tools.
 #   python3: For Carbon tools.
 #   gnupg, software-properties-common, wget: For llvm.sh.
 #   gnupg, software-properties-common, wget: For llvm.sh.
-RUN apt-get update
-RUN apt-get install -y \
+# apt-get update and install together per Docker best practice.
+RUN apt-get update && \
+  apt-get install -y \
   git \
   git \
   gnupg \
   gnupg \
   golang \
   golang \