diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 6f593102..cbf37143 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -15,19 +15,6 @@ jobs: with: go-version: "1.23.1" - - name: Update repos - run: sudo apt update && sudo apt upgrade - - - name: Install build tools - run: sudo apt install -y make git npm gulp libpam0g-dev - - - name: Install NPM tools - working-directory: adminui/frontend - run: npm install - - - name: build - run: make release - - name: Test with the Go CLI run: go test -exec sudo -v ./... diff --git a/Dockerfile b/Dockerfile index ed606882..4103d667 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 # hadolint ignore=DL3007 -FROM golang:1.24rc3-bookworm AS builder +FROM golang:latest AS builder # hadolint ignore=DL3008 RUN apt-get update && \