Skip to content

Commit 2cfdf7a

Browse files
committed
config: move deps from Dockerfile into configure
1 parent 1212986 commit 2cfdf7a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
FROM ubuntu:16.04
22

33
RUN apt-get update && apt-get install -y \
4-
cargo \
5-
golang-go \
64
sudo \
75
wget
86

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ if ($osRelease !~ m/NAME="Ubuntu"/i) {
3535

3636
if ($INSTALL_PKG_DEPS) {
3737
# Install dependencies
38-
my @miscPackages_ubuntu = ("zip", "unzip", "make", "git");
38+
my @miscPackages_ubuntu = ("zip", "unzip", "make", "git", "wget", "vim");
3939
my @rxxr2Packages_ubuntu = ("ocaml");
4040
my @wustholzPackages_ubuntu = ("default-jdk");
4141
my @shenPackages_ubuntu = ("maven");
42-
my @dynamicAnalysisPackages_ubuntu = ("nodejs", "php-cli", "ruby");
42+
my @dynamicAnalysisPackages_ubuntu = ("nodejs", "php-cli", "ruby", "cargo", "golang-go");
4343
my @requiredPackages_ubuntu = (@miscPackages_ubuntu, @rxxr2Packages_ubuntu, @wustholzPackages_ubuntu, @shenPackages_ubuntu, @dynamicAnalysisPackages_ubuntu);
4444

4545
&log("Installing dependencies");

0 commit comments

Comments
 (0)