generated from kyma-project/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 21
Showing
5 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM python:3.12.3-alpine3.20 | ||
|
||
# Serverless | ||
LABEL source = [email protected]:kyma-project/kyma.git | ||
LABEL source = [email protected]:kyma-project/serverless.git | ||
|
||
# build-base and linux-headers are needed to install all requirements | ||
RUN apk add --no-cache --virtual .build-deps build-base linux-headers | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM python:3.9.19-alpine3.20 | ||
|
||
# Serverless | ||
LABEL source = [email protected]:kyma-project/kyma.git | ||
LABEL source = [email protected]:kyma-project/serverless.git | ||
|
||
# build-base and linux-headers are needed to install all requirements | ||
RUN apk add --no-cache --virtual .build-deps build-base linux-headers | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ RUN go build -ldflags "-s -w" -a -o jobinit ./components/serverless/cmd/jobinit/ | |
FROM europe-docker.pkg.dev/kyma-project/prod/external/alpine:3.20.0 | ||
ENV LIBGIT2_VERSION=1.5.2-r0 | ||
|
||
LABEL source = [email protected]:kyma-project/kyma.git | ||
LABEL source = [email protected]:kyma-project/serverless.git | ||
|
||
RUN apk update --no-cache && apk upgrade --no-cache | ||
RUN apk add --no-cache ca-certificates | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ RUN apk update --no-cache && apk upgrade --no-cache | |
RUN apk add --no-cache --update --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main openssl | ||
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/v3.18/community libgit2=${LIBGIT2_VERSION} | ||
|
||
LABEL source = [email protected]:kyma-project/kyma.git | ||
LABEL source = [email protected]:kyma-project/serverless.git | ||
|
||
COPY --from=builder /app /app | ||
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ RUN apk add --no-cache ca-certificates | |
|
||
FROM scratch | ||
|
||
LABEL source = [email protected]:kyma-project/kyma.git | ||
LABEL source = [email protected]:kyma-project/serverless.git | ||
|
||
COPY --from=builder /app /app | ||
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt | ||
|