generated from adrienaury/go-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
42 lines (36 loc) · 1.74 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright (C) 2023 CGI France
#
# This file is part of TIPO.
#
# TIPO is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# TIPO is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with TIPO. If not, see <http:#www.gnu.org/licenses/>.
FROM gcr.io/distroless/base
COPY bin/tipo /usr/bin/tipo
WORKDIR /home/tipo
ENTRYPOINT [ "/usr/bin/tipo" ]
ARG BUILD_DATE
ARG VERSION
ARG REVISION
# https://github.com/opencontainers/image-spec/blob/master/annotations.md
LABEL org.opencontainers.image.created "${BUILD_DATE}"
LABEL org.opencontainers.image.authors "CGI Lino <[email protected]>"
LABEL org.opencontainers.image.url "https://hub.docker.com/r/cgifr/tipo"
LABEL org.opencontainers.image.documentation "https://github.com/CGI-FR/TIPO/blob/main/README.md"
LABEL org.opencontainers.image.source "https://github.com/CGI-FR/TIPO.git"
LABEL org.opencontainers.image.version "${VERSION}"
LABEL org.opencontainers.image.revision "${REVISION}"
LABEL org.opencontainers.image.vendor "CGI France"
LABEL org.opencontainers.image.licenses "GPL-3.0-only"
LABEL org.opencontainers.image.ref.name "cgi-tipo"
LABEL org.opencontainers.image.title "CGI TIPO"
LABEL org.opencontainers.image.description "TIPO Tidy Input Permuted Output is a tool for shuffling data in a JSONLine data stream."