-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'upstream-0.25.0' into orange-main
- Loading branch information
Showing
18 changed files
with
222 additions
and
197 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,11 +1,5 @@ | ||
# Binaries | ||
build/* | ||
|
||
# Taskfile | ||
.task | ||
|
||
# Task installation in Travis | ||
bin/task | ||
|
||
# Editor | ||
.idea/ |
This file was deleted.
Oops, something went wrong.
Validating CODEOWNERS rules …
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,2 +1,3 @@ | ||
# Default. Unless we have a more specific match. | ||
* @telia-oss/golang | ||
* @gstackio/staff |
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,18 +1,31 @@ | ||
FROM golang:1.21.6 AS builder | ||
ARG golang="golang:1.21.6" | ||
ARG alpine="alpine:3.19.1" | ||
|
||
|
||
FROM ${golang} AS builder | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get -y -qq update \ | ||
&& apt-get -y -qq install "make" | ||
|
||
ADD . /go/src/github.com/telia-oss/github-pr-resource | ||
WORKDIR /go/src/github.com/telia-oss/github-pr-resource | ||
RUN curl -sL https://taskfile.dev/install.sh | sh /dev/stdin v3.33.1 | ||
RUN ./bin/task build | ||
|
||
FROM alpine:3.19.1 AS resource | ||
COPY --from=builder /go/src/github.com/telia-oss/github-pr-resource/build /opt/resource | ||
RUN go version \ | ||
&& make all | ||
|
||
|
||
FROM ${alpine} AS resource | ||
RUN apk add --update --no-cache \ | ||
git \ | ||
git-lfs \ | ||
openssh \ | ||
git-crypt \ | ||
&& chmod +x /opt/resource/* | ||
git-crypt | ||
COPY scripts/askpass.sh /usr/local/bin/askpass.sh | ||
COPY --from=builder /go/src/github.com/telia-oss/github-pr-resource/build /opt/resource | ||
RUN chmod +x /opt/resource/* | ||
|
||
|
||
|
||
FROM resource | ||
LABEL MAINTAINER=telia-oss | ||
LABEL MAINTAINER=orange-cloudfoundry |
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
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
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
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
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
Oops, something went wrong.