-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile.db2
64 lines (51 loc) · 2.49 KB
/
Dockerfile.db2
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Copyright (C) 2021 CGI France
#
# This file is part of LINO.
#
# LINO 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.
#
# LINO 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 LINO. If not, see <http:#www.gnu.org/licenses/>.
FROM cgifr/pimo:v1.9.0 AS pimo
FROM debian:stable-20210816-slim
RUN apt-get update && \
apt-get install -y --no-install-recommends less jq wget git libxml2-dev && \
apt-get autoremove -y && \
apt-get clean -y && \
rm -r /var/cache/* /var/lib/apt/lists/*
ENV DB2_HOME=/opt/db2/clidriver
ENV LD_LIBRARY_PATH=${DB2_HOME}/lib
ADD https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/linuxx64_odbc_cli.tar.gz /tmp/
RUN mkdir -p $(dirname ${DB2_HOME}) && \
tar -xvzf /tmp/linuxx64_odbc_cli.tar.gz -C $(dirname ${DB2_HOME}) && \
rm /tmp/linuxx64_odbc_cli.tar.gz
ARG VERSION_MILLER=5.10.2
ADD https://github.com/johnkerl/miller/releases/download/v${VERSION_MILLER}/mlr.linux.x86_64 /usr/bin/mlr
RUN chmod +x /usr/bin/mlr
COPY dist/lino-db2_linux_amd64_v1/lino-db2 /usr/bin/lino
COPY --from=pimo /usr/bin/pimo /usr/bin/pimo
WORKDIR /home/lino
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://github.com/CGI-FR/LINO"
LABEL org.opencontainers.image.documentation "https://github.com/CGI-FR/LINO/blob/main/README.md"
LABEL org.opencontainers.image.source "https://github.com/CGI-FR/LINO.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-lino"
LABEL org.opencontainers.image.title "CGI LINO"
LABEL org.opencontainers.image.description "LINO is a simple ETL (Extract Transform Load) tools to manage tests datas."