Skip to content
Open
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
4 changes: 2 additions & 2 deletions Dockerfile.client
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM mwader/static-ffmpeg:7.1.1 AS ffmpeg

# Go Binary Builder
FROM golang:1.24.1-alpine AS go-build
FROM golang:1.26rc1-alpine AS go-build
WORKDIR /app
COPY . .
RUN go get -v && \
go build -o streamdl

# Golang Protobuf Client and Logic
FROM golang:1.24.1-alpine AS client
FROM golang:1.26rc1-alpine AS client

# Install su-exec for running as non-root
RUN apk add --no-cache su-exec
Expand Down
Loading