https://github.com/SuperElastix/elastix
Raw File
Tip revision: 461631ce6fe1c8129834bba1a7c11bb3339c7a46 authored by Niels Dekker on 17 November 2022, 22:06:48 UTC
BUG: Remove `elx::ProgressCommand::m_StreamOutputIsConsole`
Tip revision: 461631c
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