-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Build docker image and push to dockerhub (#415)
- Loading branch information
1 parent
ab2e2e9
commit b65034e
Showing
4 changed files
with
38 additions
and
4 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 |
---|---|---|
|
@@ -37,3 +37,4 @@ Makefile | |
CMakeFiles/ | ||
CTestTestfile.cmake | ||
.idea/ | ||
.githooks/clangFormatMac |
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,18 @@ | ||
FROM ubuntu:20.04 | ||
|
||
# Add labels to image | ||
LABEL documentation="https://github.com/SuperElastix/elastix/wiki" | ||
LABEL license="Apache License Version 2.0" | ||
LABEL modelzoo="https://elastix.lumc.nl/modelzoo/" | ||
|
||
# Prepare system packages, libgomp1 is required by elastix | ||
RUN apt-get update && apt-get -qq install libgomp1 -y | ||
|
||
# Copy necessary files | ||
COPY uploads/bin/* /usr/local/bin/ | ||
COPY uploads/lib/* /usr/lib/ | ||
|
||
COPY uploads/LICENSE / | ||
COPY uploads/NOTICE / | ||
|
||
CMD elastix |
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