This commit is contained in:
Arlan Lloyd 2026-02-19 14:23:55 -08:00
parent acfa784a9f
commit f17abde29c
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.25 AS build
FROM --platform=$BUILDPLATFORM golang:1.26 AS build
WORKDIR /app
COPY go.mod go.sum ./

View File

@ -1,4 +1,4 @@
FROM golang:1.25 AS build
FROM golang:1.26 AS build
WORKDIR /app
COPY go.mod go.sum ./

View File

@ -1,4 +1,4 @@
FROM golang:1.25 AS build
FROM golang:1.26 AS build
RUN apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests -y \
ffmpeg libavformat-dev libavutil-dev libswscale-dev \

View File

@ -1,4 +1,4 @@
FROM golang:1.25
FROM golang:1.26
# read target arch from buildx or default to amd64 if using legacy builder.
ARG TARGETARCH
ENV TARGETARCH=${TARGETARCH:-amd64}