Mercurial > hg > orthanc-python
annotate Resources/Builders/Dockerfile-MinGW-BuildEnvironment @ 15:c4c3590e2024
back to mainline
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 01 Apr 2020 10:22:23 +0200 |
parents | 7ed502b17b8f |
children | 2ec8e4cb93d3 |
rev | line source |
---|---|
0 | 1 FROM debian:stable-slim |
2 | |
3 MAINTAINER Sebastien Jodogne <s.jodogne@gmail.com> | |
4 LABEL Description="Orthanc, free DICOM server" Vendor="The Orthanc project" | |
5 | |
6 RUN apt-get -y clean && apt-get -y update | |
7 RUN DEBIAN_FRONTEND=noninteractive apt-get -y install \ | |
8 nano unzip cmake mingw-w64 patch wget bzip2 && \ | |
9 apt-get clean && rm -rf /var/lib/apt/lists/* |