bump Go verison

This commit is contained in:
ra_ma
2026-04-21 12:04:32 +01:00
parent eb3bac9ff5
commit 7c87109d25
+2 -2
View File
@@ -17,7 +17,7 @@ RUN curl -s https://api.github.com/repos/5rahim/seanime/releases/latest | grep '
# Start web build
FROM node:18-alpine AS frontend-build
FROM node:20-alpine AS frontend-build
# Set working directory to the extracted source code
WORKDIR /app/seanime-web
@@ -32,7 +32,7 @@ RUN npm install && \
cp -r out/* /app/web/
# Start backend build
FROM golang:1.25-alpine AS backend-build
FROM golang:1.26-alpine AS backend-build
# set build root
WORKDIR /build