Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion auth/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM --platform=$BUILDPLATFORM golang:1.25 AS build
FROM --platform=$BUILDPLATFORM golang:1.26 AS build
WORKDIR /app

COPY go.mod go.sum ./
RUN go mod download

COPY . .

Check warning on line 7 in auth/Dockerfile

View workflow job for this annotation

GitHub Actions / Build auth

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/
RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=$TARGETARCH go build -o /keibi

FROM gcr.io/distroless/base-debian11
Expand Down
2 changes: 1 addition & 1 deletion auth/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25 AS build
FROM golang:1.26 AS build
WORKDIR /app

COPY go.mod go.sum ./
Expand Down
2 changes: 1 addition & 1 deletion transcoder/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand All @@ -9,7 +9,7 @@
COPY go.mod go.sum ./
RUN go mod download

COPY . .

Check warning on line 12 in transcoder/Dockerfile

View workflow job for this annotation

GitHub Actions / Build transcoder

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/
RUN GOOS=linux go build -o ./transcoder

# https://packages.debian.org/trixie/ffmpeg for version tracking
Expand Down
2 changes: 1 addition & 1 deletion transcoder/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -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}
Expand Down