Update .gitignore to include __debug* and change Dockerfile base image to golang:1.24.5-bullseye

This commit is contained in:
Cédric Verstraeten
2025-09-09 14:36:32 +00:00
parent ca8d88ffce
commit 1425430376
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -2,6 +2,7 @@ ui/node_modules
ui/build
ui/public/assets/env.js
.DS_Store
__debug*
.idea
machinery/www
yarn.lock

View File

@@ -1,5 +1,5 @@
FROM mcr.microsoft.com/devcontainers/go:1.24-bookworm AS build-machinery
FROM golang:1.24.5-bullseye AS build-machinery
LABEL AUTHOR=uug.ai
##########################################