view Resources/Builders/Dockerfile-MinGW-BuildEnvironment @ 26:b0d1308280d8

Added the PYTHON_WINDOWS_USE_RELEASE_LIBS CMake option to allow usage of debug or release Python builds when building in debug mode under Windows with Visual Studio.
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 06 Apr 2020 20:39:49 +0200
parents 2ec8e4cb93d3
children fd58eb5749ed
line wrap: on
line source

FROM debian:stable-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
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install \
    nano unzip cmake mingw-w64 patch wget bzip2 python && \
    apt-get clean && rm -rf /var/lib/apt/lists/*