comparison Aws/mingw-compile/Dockerfile @ 161:f7654d481226

created Aws/mingw-compile.sh
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sun, 23 Jun 2024 15:12:06 +0200
parents
children
comparison
equal deleted inserted replaced
160:d3e7c86c3a4e 161:f7654d481226
1 # Cloud storage plugins for Orthanc
2 # Copyright (C) 2020-2023 Osimis S.A., Belgium
3 # Copyright (C) 2024-2024 Orthanc Team SRL, Belgium
4 # Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
5 #
6 # This program is free software: you can redistribute it and/or
7 # modify it under the terms of the GNU Affero General Public License
8 # as published by the Free Software Foundation, either version 3 of
9 # the License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Affero General Public License for more details.
15 #
16 # You should have received a copy of the GNU Affero General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19
20 # Debian 12.5 contains mingw 12.x, which is insufficient
21 # FROM debian:12.5
22
23 # Ubuntu 24.04 contains mingw 13.x, which is OK
24 FROM ubuntu:24.04
25
26 MAINTAINER Sebastien Jodogne <s.jodogne@gmail.com>
27 LABEL Description="Orthanc, free DICOM server" Vendor="The Orthanc project"
28
29 RUN apt-get -y clean && apt-get -y update && \
30 apt-get -y install cmake patch gcc-mingw-w64 g++-mingw-w64 unzip mercurial && \
31 apt-get clean && rm -rf /var/lib/apt/lists/*