-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🎉 added t1k 1.0.5 docker * update docker table (#237) Co-authored-by: dmiller15 <[email protected]> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
a87b581
commit 3928d8a
Showing
2 changed files
with
12 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,11 @@ | ||
FROM ubuntu:22.04 | ||
LABEL maintainer="Miguel Brown ([email protected])" | ||
LABEL description="Builds T1K HLA Typer image" | ||
|
||
ENV T1K_VERSION=1.0.5 | ||
|
||
RUN apt update && apt install -y curl build-essential zlib1g-dev libncurses5-dev libbz2-dev liblzma-dev libcurl4-openssl-dev libssl-dev libpthread-stubs0-dev | ||
|
||
RUN curl -sL https://github.com/mourisl/T1K/archive/refs/tags/v${T1K_VERSION}.tar.gz | tar -xz && cd T1K-${T1K_VERSION} && make | ||
|
||
COPY Dockerfile . |