Procházet zdrojové kódy

Add "wget" for tests like mongo-basics

Tianon Gravi před 6 roky
rodič
revize
01342e4518
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      Dockerfile

+ 2 - 1
Dockerfile

@@ -3,8 +3,9 @@ FROM tianon/docker-tianon
 RUN set -eux; \
 	apt-get update; \
 	apt-get install -y --no-install-recommends \
-# ssl for downloading files
+# wget for downloading files (especially in tests, which run in this environment)
 		ca-certificates \
+		wget \
 # git for cloning source code
 		git \
 	; \