-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Store a stub of node-config/sign_node.yml in the repository (#62)
Also, fixed loading an incomplete config file and added more logging. Resolves: AlmaLinux/build-system/issues/236
- Loading branch information
Showing
10 changed files
with
30 additions
and
28 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
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 |
---|---|---|
|
@@ -132,6 +132,3 @@ dmypy.json | |
.idea/ | ||
.vscode/ | ||
.DS_Store | ||
|
||
# Misc | ||
node-config/ |
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,12 +1,20 @@ | ||
FROM almalinux:9 | ||
|
||
COPY signnode.repo /etc/yum.repos.d/signnode.repo | ||
RUN dnf upgrade -y && dnf install -y --enablerepo="buildsystem" \ | ||
rpm-sign pinentry keyrings-filesystem ubu-keyring debian-keyring raspbian-keyring git && \ | ||
dnf clean all | ||
RUN <<EOT bash | ||
set -ex | ||
dnf upgrade -y | ||
dnf install -y rpm-sign pinentry keyrings-filesystem ubu-keyring debian-keyring raspbian-keyring git | ||
dnf clean all | ||
EOT | ||
|
||
WORKDIR /sign-node | ||
COPY requirements.* . | ||
RUN python3 -m ensurepip && pip3 install -r requirements.devel.txt && rm requirements.* | ||
RUN <<EOT bash | ||
set -ex | ||
python3 -m ensurepip | ||
pip3 install -r requirements.devel.txt | ||
rm requirements.* | ||
EOT | ||
|
||
ADD --chmod=755 https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh / |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# This file will be overwritten during the system deployment. | ||
# You can find details in the albs-deploy repository. | ||
# | ||
# You might want to enable 'development_mode' by uncommenting | ||
# the following line in case your development setup needs it. | ||
# development_mode: yes |
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 @@ | ||
[buildsystem] | ||
baseurl = https://repo.almalinux.org/build_system/9/$basearch/ | ||
enabled = 0 | ||
enabled = 1 | ||
gpgcheck = 0 | ||
name = AlmaLinux - 9 - BuildSystem | ||
name = AlmaLinux 9 - BuildSystem |