-
Notifications
You must be signed in to change notification settings - Fork 305
/
Dockerfile
48 lines (38 loc) · 1.36 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
FROM ubuntu:20.04
MAINTAINER ngocpq <[email protected]>
#############################################################################
# Requirements
#############################################################################
RUN \
apt-get update -y && \
apt-get install software-properties-common -y && \
apt-get update -y && \
apt-get install -y openjdk-11-jdk \
git \
build-essential \
subversion \
perl \
curl \
unzip \
cpanminus \
make \
&& \
rm -rf /var/lib/apt/lists/*
# Java version
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
# Timezone
ENV TZ=America/Los_Angeles
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
#############################################################################
# Setup Defects4J
#############################################################################
# ----------- Step 1. Clone defects4j from github --------------
WORKDIR /
RUN git clone https://github.com/rjust/defects4j.git defects4j
# ----------- Step 2. Initialize Defects4J ---------------------
WORKDIR /defects4j
RUN cpanm --installdeps .
RUN ./init.sh
# ----------- Step 3. Add Defects4J's executables to PATH: ------
ENV PATH="/defects4j/framework/bin:${PATH}"
#--------------