first nixified version

This commit is contained in:
James Andariese 2024-08-03 19:48:21 -05:00
commit 89b334168a
6 changed files with 175 additions and 0 deletions

27
.github/workflows/build.yaml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Build and push nixos-based docker container
on: [push]
env:
REGISTRY: git.strudelline.net
PACKAGE: cascade/docker-node-red
REGISTRY_AUTH_FILE: ./registry-auth.json
jobs:
build:
runs-on: nix
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 1
- run: |-
set -x
skopeo login --username ${{ secrets.DOCKER_USER }} --password ${{ secrets.DOCKER_PASSWORD }} "$REGISTRY"
( # echo tags into the image uploader's read loop
echo "sha-$(echo "$GITHUB_SHA" | cut -c 1-8)"
echo "$GITHUB_REF_NAME-$(date +%Y%m%d-%H%M%S)"
) | while read -r TAG;do
nix run .#upload-image "docker://$REGISTRY/$PACKAGE:$TAG"
done

24
.github/workflows/update.yaml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Update flake lock
on:
schedule:
- cron: '47 3 * * *'
jobs:
build:
runs-on: nix
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
token: ${{ secrets.ADMIN_ACTIONS_TOKEN }}
fetch-depth: 0
- run: |-
git config --local --add user.email localadmin@strudelline.net
git config --local --add user.name 'Admin Actions'
git pull
nix flake update
if ! git commit -m "Flake updates for $(date)" -a;then
echo "no updates to commit"
exit 0
fi
git push

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
.*
!.git?*
*~
\#*#
result

20
docker.nix Normal file
View File

@ -0,0 +1,20 @@
{ config, pkgs, ...}:
let
name = "node-red";
entrypoint = pkgs.writeShellApplication {
name = "entrypoint";
runtimeInputs = with pkgs; with nodePackages; [
node-red
#ungoogled-chromium
];
text = ''
node-red
'';
};
in pkgs.dockerTools.streamLayeredImage {
inherit name;
config.Cmd = [ "${entrypoint}/bin/entrypoint" ];
}

61
flake.lock Normal file
View File

@ -0,0 +1,61 @@
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1710146030,
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1722421184,
"narHash": "sha256-/DJBI6trCeVnasdjUo9pbnodCLZcFqnVZiLUfqLH4jA=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "9f918d616c5321ad374ae6cb5ea89c9e04bf3e58",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable-small",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

37
flake.nix Normal file
View File

@ -0,0 +1,37 @@
{
description = "docker builder for cascade's node-red";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
let
lib = nixpkgs.lib;
pkgs = nixpkgs.legacyPackages.${system};
streamImage = pkgs.callPackage (import ./docker.nix) {};
in
{
packages.upload-image = pkgs.writeScriptBin "upload" ''
${streamImage} | ${pkgs.skopeo}/bin/skopeo copy docker-archive:/dev/stdin "$@"
'';
packages.stream-image = pkgs.writeScriptBin "stream" ''
${streamImage}
'';
packages.default = pkgs.writeScriptBin "help" ''
echo ${lib.escapeShellArg ''
nixos-based docker node-red image builder
usage:
nix run .#stream-image | docker load
nix run .#upload-image docker://registry.where/it/goes:its4tag
''}
'';
});
}