Mercurial > hg > orthanc-python
annotate Resources/Builders/Dockerfile-MinGW-BuildEnvironment @ 175:c012edac593e java-code-model
patching the Orthanc SDK
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 27 Jun 2024 18:10:31 +0200 |
parents | c17cdaf687e3 |
children | 3678a028f1f6 |
rev | line source |
---|---|
95
c17cdaf687e3
use debian:buster-slim to compile Windows binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
37
diff
changeset
|
1 # 2021-09-15: We don't use "debian:bullseye-slim", as the "mercurial" package |
c17cdaf687e3
use debian:buster-slim to compile Windows binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
37
diff
changeset
|
2 # fails to install on CBlue |
c17cdaf687e3
use debian:buster-slim to compile Windows binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
37
diff
changeset
|
3 FROM debian:buster-slim |
0 | 4 |
5 MAINTAINER Sebastien Jodogne <s.jodogne@gmail.com> | |
6 LABEL Description="Orthanc, free DICOM server" Vendor="The Orthanc project" | |
7 | |
37 | 8 RUN apt-get -y clean && apt-get -y update && \ |
9 DEBIAN_FRONTEND=noninteractive apt-get -y install \ | |
36
fd58eb5749ed
CMake simplification using DownloadOrthancFramework.cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
18
diff
changeset
|
10 nano unzip cmake mingw-w64 patch wget bzip2 python mercurial && \ |
0 | 11 apt-get clean && rm -rf /var/lib/apt/lists/* |