diff --git a/Dockerfile b/Dockerfile index 4de64a2..b906d71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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