Skip to content

Commit 346fb89

Browse files
authored
Merge pull request #224 from Netcracker/develop
chore: release 3.0.0
2 parents 0557ba8 + f4db975 commit 346fb89

33 files changed

+536
-1178
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ jwt_private_key
2727
*.patch
2828

2929
.DS_Store
30+
31+
qubership-apihub-service/local_config/config.yaml

.qubership/grand-report.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"exclusions" : [ {
3+
"t-hash" : "00000000",
4+
"f-hash" : "0d000f95633c557deedf8eb1c44ee3b1e2f4dd7bd71fb3bae44e1fccd1ba6ad7"
5+
}, {
6+
"t-hash" : "795f701a5a477424919b8f2f6dbd915815e3aeaba2f01c5585b62088f0ea72f1",
7+
"f-hash" : "2751bee66fe299b15419e3b544d923dba686ad269edfc95b8c3708e7a8f26919"
8+
}, {
9+
"t-hash" : "d0c92c764c5647d43d7166efc3e7d350751de063c1388bd2e113fab4865529d3",
10+
"f-hash" : "4eb6792e6d5fda994d172e0ee47925bd63f50ed2dbec482e4809a4dc624ad74c"
11+
}, {
12+
"t-hash" : "58752b756ddeeb694f824db2e99508ee8df1581a0a222ebfff2a5c24c7affda9",
13+
"f-hash" : "56d0194412710900df7740c072fc3585c03022cd8c32ba8a5091dc601e2f8b1f"
14+
}, {
15+
"t-hash" : "4cd448cef17d9d3e0777a39b047bd548acfce96b746fedc8d1e569851ff7b1c3",
16+
"f-hash" : "8edf8728f1887210dde70b15345d7ea4a7d2ee334dc55af943e3b61bc79bc84f"
17+
}, {
18+
"t-hash" : "d0c92c764c5647d43d7166efc3e7d350751de063c1388bd2e113fab4865529d3",
19+
"f-hash" : "9ac7c5c39b36e6b9b094421aa2f13f9807217efa619b2660e12dcc2d7aa3bdb9"
20+
}, {
21+
"t-hash" : "58752b756ddeeb694f824db2e99508ee8df1581a0a222ebfff2a5c24c7affda9",
22+
"f-hash" : "a3b7c5722af8719b965a971419e3d939f07c2eb944e3f5f4f7f51fc97cb3bb37"
23+
}, {
24+
"t-hash" : "00000000",
25+
"f-hash" : "f60e0dc90cc2d94eb618390a4a14fe8efb3c340fa233dba4a53390bc3b82756f"
26+
}, {
27+
"t-hash" : "d0c92c764c5647d43d7166efc3e7d350751de063c1388bd2e113fab4865529d3",
28+
"f-hash" : "fccb1ba736ab89372f4a5b6fa8957b4747940ee87a6d011d29b4ba5b4b6977cf"
29+
} ]
30+
}

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Note: this uses host platform for the build, and we ask go build to target the needed platform, so we do not spend time on qemu emulation when running "go build"
2-
FROM --platform=$BUILDPLATFORM docker.io/golang:1.23.4-alpine3.21 as builder
2+
FROM --platform=$BUILDPLATFORM docker.io/golang:1.24.7-alpine3.22 as builder
33
ARG BUILDPLATFORM
44
ARG TARGETOS
55
ARG TARGETARCH
@@ -10,9 +10,9 @@ COPY qubership-apihub-service qubership-apihub-service
1010

1111
WORKDIR /workspace/qubership-apihub-service
1212

13-
RUN set GOSUMDB=off && set CGO_ENABLED=0 && go mod tidy && go mod download && GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build .
13+
RUN GOSUMDB=off CGO_ENABLED=0 go mod tidy && go mod download && GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build .
1414

15-
FROM docker.io/golang:1.23.4-alpine3.21
15+
FROM docker.io/alpine:3.22.1
1616

1717
ARG GIT_BRANCH=unknown
1818
ARG GIT_HASH=unknown
@@ -24,6 +24,7 @@ WORKDIR /app/qubership-apihub-service
2424

2525
USER root
2626

27+
# hadolint ignore=DL3018
2728
RUN apk --no-cache add curl
2829

2930
COPY --from=builder /workspace/qubership-apihub-service/qubership-apihub-service ./qubership-apihub-service

0 commit comments

Comments
 (0)