-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* finemap image * remove unnecc packages * Update Dockerfile * add libgomp1 * eof
- Loading branch information
1 parent
1070d61
commit 9f80b87
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM debian:bullseye-slim | ||
|
||
WORKDIR /tmp | ||
|
||
# Install dev libraries | ||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends \ | ||
curl \ | ||
libgomp1 \ | ||
&& apt-get clean | ||
|
||
RUN curl -L http://www.christianbenner.com/finemap_v1.4.2_x86_64.tgz -o finemap.tgz \ | ||
&& tar zxvf finemap.tgz && mv finemap_v1.4.2_x86_64/finemap_v1.4.2_x86_64 /usr/local/bin/finemap \ | ||
&& chmod +x /usr/local/bin/finemap && rm -rf /tmp/* | ||
|
||
CMD ["bash"] |