Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# Fill files in algorun_info folder and put your source code in src folder
FROM algorun/algorun
# Install any algorithm dependencies here
RUN apt-get update
RUN apt-get install -y openjdk-8-jdk
RUN apt-get install -y maven
RUN rm -rf /var/lib/apt/lists/*
# [Don't change the next two lines] Add source files to the Docker image
ADD ./algorun_info /home/algorithm/web/algorun_info/
ADD ./src /home/algorithm/src/
# [Optional] Compile/build your source code
WORKDIR /home/algorithm/src
#RUN mvn assembly:assembly -DdescriptorId=jar-with-dependencies
RUN mvn package
# [Optional] Sign your image
LABEL maintainer 'Yu Mei <yu.mei@uconn.edu>'