Skip to content

Commit 8c1e211

Browse files
authored
fix: upgrade debian docker image (#395)
1 parent 5c8cb0e commit 8c1e211

File tree

6 files changed

+31
-151
lines changed

6 files changed

+31
-151
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ Types of changes
1414
- `Fixed` for any bug fixes.
1515
- `Security` in case of vulnerabilities.
1616

17-
## [Unreleased]
18-
19-
- `Added` automatic homebrew formula update in release workflow
20-
2117
## [3.4.0]
2218

19+
- `Removed` db2 version of docker image
20+
- `Removed` oracle version of docker image
21+
- `Fixed` upgrade debian docker image
22+
- `Added` automatic homebrew formula update in release workflow
2323
- `Added` preserve NULL or empty functionality in "lino push update" command
2424

2525
## [3.3.0]

Dockerfile

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,16 @@ ARG VERSION
2828
ARG REVISION
2929

3030
# https://github.com/opencontainers/image-spec/blob/master/annotations.md
31-
LABEL org.opencontainers.image.created "${BUILD_DATE}"
32-
LABEL org.opencontainers.image.authors "CGI Lino <[email protected]>"
33-
LABEL org.opencontainers.image.url "https://github.com/CGI-FR/LINO"
34-
LABEL org.opencontainers.image.documentation "https://github.com/CGI-FR/LINO/blob/main/README.md"
35-
LABEL org.opencontainers.image.source "https://github.com/CGI-FR/LINO.git"
36-
LABEL org.opencontainers.image.version "${VERSION}"
37-
LABEL org.opencontainers.image.revision "${REVISION}"
38-
LABEL org.opencontainers.image.vendor "CGI France"
39-
LABEL org.opencontainers.image.licenses "GPL-3.0-only"
40-
LABEL org.opencontainers.image.ref.name "cgi-lino"
41-
LABEL org.opencontainers.image.title "CGI LINO"
42-
LABEL org.opencontainers.image.description "LINO is a simple ETL (Extract Transform Load) tools to manage tests datas."
31+
LABEL org.opencontainers.image.created="${BUILD_DATE}"
32+
LABEL org.opencontainers.image.authors="CGI Lino <[email protected]>"
33+
LABEL org.opencontainers.image.url="https://github.com/CGI-FR/LINO"
34+
LABEL org.opencontainers.image.documentation="https://github.com/CGI-FR/LINO/blob/main/README.md"
35+
LABEL org.opencontainers.image.source="https://github.com/CGI-FR/LINO.git"
36+
LABEL org.opencontainers.image.version="${VERSION}"
37+
LABEL org.opencontainers.image.revision="${REVISION}"
38+
LABEL org.opencontainers.image.vendor="CGI France"
39+
LABEL org.opencontainers.image.licenses="GPL-3.0-only"
40+
LABEL org.opencontainers.image.ref.name="cgi-lino"
41+
LABEL org.opencontainers.image.title="CGI LINO"
42+
LABEL org.opencontainers.image.description="LINO is a simple ETL (Extract Transform Load) tools to manage tests datas."
43+

Dockerfile.db2

Lines changed: 0 additions & 64 deletions
This file was deleted.

Dockerfile.debian

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717

1818
FROM cgifr/pimo:v1.8.0 AS pimo
1919

20-
FROM debian:stable-20210816-slim
20+
FROM debian:stable-20250929-slim
2121

2222
RUN apt-get update && \
23-
apt-get install -y --no-install-recommends less jq wget git postgresql-client && \
23+
apt-get install -y --no-install-recommends git jq less postgresql-client wget && \
2424
apt-get autoremove -y && \
2525
apt-get clean -y && \
2626
rm -r /var/cache/* /var/lib/apt/lists/*
@@ -41,16 +41,16 @@ ARG VERSION
4141
ARG REVISION
4242

4343
# https://github.com/opencontainers/image-spec/blob/master/annotations.md
44-
LABEL org.opencontainers.image.created "${BUILD_DATE}"
45-
LABEL org.opencontainers.image.authors "CGI Lino <[email protected]>"
46-
LABEL org.opencontainers.image.url "https://github.com/CGI-FR/LINO"
47-
LABEL org.opencontainers.image.documentation "https://github.com/CGI-FR/LINO/blob/main/README.md"
48-
LABEL org.opencontainers.image.source "https://github.com/CGI-FR/LINO.git"
49-
LABEL org.opencontainers.image.version "${VERSION}"
50-
LABEL org.opencontainers.image.revision "${REVISION}"
51-
LABEL org.opencontainers.image.vendor "CGI France"
52-
LABEL org.opencontainers.image.licenses "GPL-3.0-only"
53-
LABEL org.opencontainers.image.ref.name "cgi-lino"
54-
LABEL org.opencontainers.image.title "CGI LINO"
55-
LABEL org.opencontainers.image.description "LINO is a simple ETL (Extract Transform Load) tools to manage tests datas."
44+
LABEL org.opencontainers.image.created="${BUILD_DATE}"
45+
LABEL org.opencontainers.image.authors="CGI Lino <[email protected]>"
46+
LABEL org.opencontainers.image.url="https://github.com/CGI-FR/LINO"
47+
LABEL org.opencontainers.image.documentation="https://github.com/CGI-FR/LINO/blob/main/README.md"
48+
LABEL org.opencontainers.image.source="https://github.com/CGI-FR/LINO.git"
49+
LABEL org.opencontainers.image.version="${VERSION}"
50+
LABEL org.opencontainers.image.revision="${REVISION}"
51+
LABEL org.opencontainers.image.vendor="CGI France"
52+
LABEL org.opencontainers.image.licenses="GPL-3.0-only"
53+
LABEL org.opencontainers.image.ref.name="cgi-lino"
54+
LABEL org.opencontainers.image.title="CGI LINO"
55+
LABEL org.opencontainers.image.description="LINO is a simple ETL (Extract Transform Load) tools to manage tests datas."
5656

Dockerfile.oracle

Lines changed: 0 additions & 55 deletions
This file was deleted.

build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ properties:
6363
dockerfiles:
6464
Dockerfile: .
6565
Dockerfile.debian: .
66-
Dockerfile.oracle: .
67-
Dockerfile.db2: .
6866

6967
# Path and name of the file generated by the license target.
7068
noticefile: "NOTICE.md"

0 commit comments

Comments
 (0)