Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
seppinho committed Nov 10, 2023
1 parent a3c7678 commit a04ff76
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM ubuntu:20.04

# Install compilers
RUN apt-get update && apt-get clean


# Install minimac4
WORKDIR "/opt"
RUN mkdir minimac4
COPY files/bin/minimac4 minimac4/.
ENV PATH="/opt/minimac4:${PATH}"
RUN chmod +x /opt/minimac4/minimac4

# Install recombination tool
WORKDIR "/opt"
RUN mkdir rand-recom
COPY files/bin/rand-recom rand-recom/.
ENV PATH="/opt/rand-recom:${PATH}"
RUN chmod +x /opt/rand-recom/rand-recom

0 comments on commit a04ff76

Please sign in to comment.