首页 > 技术文章 > 如何构建dcmtk的docker的镜像

omage 2020-04-30 17:09 原文

编写Dockerfile

From ubuntu:latest AS base

RUN apt-get update
RUN apt-get install -y dcmtk

 构建Docker镜像

cd [directory of Dockefile]
 
dokcer build -t dcmtk:latest .

 

参考

https://dicom.offis.de/dcmtk.php.en

推荐阅读