comparison Resources/CreateOHIFDist/Dockerfile @ 0:39585ba26f20

initial commit
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 15 Jun 2023 09:48:46 +0200
parents
children c34ecc350b32
comparison
equal deleted inserted replaced
-1:000000000000 0:39585ba26f20
1 # SPDX-FileCopyrightText: 2023 Sebastien Jodogne, UCLouvain, Belgium
2 # SPDX-License-Identifier: GPL-3.0-or-later
3
4 # OHIF plugin for Orthanc
5 # Copyright (C) 2023 Sebastien Jodogne, UCLouvain, Belgium
6 #
7 # This program is free software: you can redistribute it and/or
8 # modify it under the terms of the GNU General Public License as
9 # published by the Free Software Foundation, either version 3 of the
10 # License, or (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20 FROM node:19.7.0-bullseye-slim
21
22 MAINTAINER Sebastien Jodogne <s.jodogne@gmail.com>
23 LABEL Description="Orthanc, free DICOM server" Vendor="The Orthanc project"
24
25 RUN apt-get -y clean && apt-get -y update && \
26 apt-get clean && rm -rf /var/lib/apt/lists/*