-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/monitor
- Loading branch information
Showing
76 changed files
with
5,717 additions
and
2,243 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,2 +1,2 @@ | ||
target/ | ||
pki/ | ||
* | ||
!artifacts/ |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[target.aarch64-unknown-linux-gnu] | ||
image = "ghcr.io/lablans/cross-test:aarch64-unknown-linux-gnu" | ||
pre-build = ["dpkg --add-architecture arm64 && apt-get update && apt-get install --assume-yes libssl-dev:arm64 && rm -rf /var/lib/apt/lists/*"] | ||
|
||
[target.x86_64-unknown-linux-gnu] | ||
image = "ghcr.io/lablans/cross-test:x86_64-unknown-linux-gnu" | ||
pre-build = ["dpkg --add-architecture amd64 && apt-get update && apt-get install --assume-yes libssl-dev:amd64 && rm -rf /var/lib/apt/lists/*"] |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# This Dockerfile is infused with magic to speedup the build. | ||
# In particular, it requires built binaries to be present (see COPY directive). | ||
# | ||
# tl;dr: To make this build work, run | ||
# ./dev/beamdev build | ||
# and find your freshly built images tagged with the `localbuild` tag. | ||
|
||
FROM alpine AS chmodder | ||
ARG FEATURE | ||
ARG TARGETARCH | ||
ARG COMPONENT | ||
COPY /artifacts/binaries-$TARGETARCH$FEATURE/$COMPONENT /app/$COMPONENT | ||
RUN chmod +x /app/* | ||
|
||
FROM gcr.io/distroless/cc-debian12 | ||
ARG COMPONENT | ||
COPY --from=chmodder /app/$COMPONENT /usr/local/bin/beam | ||
ENTRYPOINT [ "/usr/local/bin/beam" ] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.