Browse Source

Update tfb.dockerfile (#3305)

Adding wget and git to the tfb base dockerfile as a lot of frameworks use them
Nate 7 years ago
parent
commit
d7c530f33b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      toolset/setup/linux/docker/tfb.dockerfile

+ 2 - 2
toolset/setup/linux/docker/tfb.dockerfile

@@ -1,7 +1,7 @@
 FROM ubuntu:16.04
 FROM ubuntu:16.04
 
 
 RUN apt-get update
 RUN apt-get update
-RUN apt-get install -qqy software-properties-common build-essential curl locales
+RUN apt-get install -qqy software-properties-common build-essential curl locales wget git
 
 
 RUN locale-gen en_US.UTF-8
 RUN locale-gen en_US.UTF-8
 ENV LANG en_US.UTF-8  
 ENV LANG en_US.UTF-8  
@@ -12,4 +12,4 @@ ADD TFBReaper TFBReaper
 
 
 RUN mv TFBReaper/target/debug/tfb_reaper /
 RUN mv TFBReaper/target/debug/tfb_reaper /
 
 
-ENTRYPOINT ["/tfb_reaper"]
+ENTRYPOINT ["/tfb_reaper"]