Mercurial > hg > orthanc-python
view Resources/Builders/Dockerfile-MinGW-BuildEnvironment @ 187:d08d75fc6d6a java-code-model
synchronization of the code model with orthanc-java project
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 02 Jul 2024 17:02:11 +0200 |
parents | c17cdaf687e3 |
children | 3678a028f1f6 |
line wrap: on
line source
# 2021-09-15: We don't use "debian:bullseye-slim", as the "mercurial" package # fails to install on CBlue FROM debian:buster-slim MAINTAINER Sebastien Jodogne <s.jodogne@gmail.com> LABEL Description="Orthanc, free DICOM server" Vendor="The Orthanc project" RUN apt-get -y clean && apt-get -y update && \ DEBIAN_FRONTEND=noninteractive apt-get -y install \ nano unzip cmake mingw-w64 patch wget bzip2 python mercurial && \ apt-get clean && rm -rf /var/lib/apt/lists/*