devenv: add deploy-docker script

This commit is contained in:
2025-09-13 20:58:32 +02:00
parent 4aa43d8f20
commit 1fd5783244

View File

@@ -1,4 +1,5 @@
{pkgs, ...}: {
{ pkgs, ... }:
{
android = {
enable = true;
emulator.enable = false;
@@ -44,9 +45,10 @@
};
scripts = {
web-to-container.exec = ''
deploy-docker.exec = ''
flutter build web --release
docker build -t sheetless .
docker build -t harbor.julian-mutter.de/sheetless/sheetless-frontend .
docker push harbor.julian-mutter.de/sheetless/sheetless-frontend
'';
};
}