https://github.com/SuperElastix/elastix
Raw File
Tip revision: 95a105672a7e3c79468be7ff9cd043b28db835d8 authored by Niels Dekker on 14 March 2024, 11:44:30 UTC
WIP: Print log AdvancedImageToImageMetric::CheckForBSplineInterpolator()
Tip revision: 95a1056
Dockerfile
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
back to top