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
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ COPY web/ ./
RUN npm run build

# --------------------------------------------------------------- C++ build
FROM alpine:3.20 AS build
FROM alpine:3.24 AS build
RUN apk add --no-cache g++ musl-dev
WORKDIR /src
COPY mp4probe.hpp mp4check.cpp mp4web.cpp ./
RUN g++ -std=c++17 -O2 -Wall -o mp4check mp4check.cpp \
&& g++ -std=c++17 -O2 -Wall -pthread -o mp4web mp4web.cpp

# ----------------------------------------------------------------- runtime
FROM alpine:3.20
FROM alpine:3.24
# ffmpeg carries libx264/libvpx; libstdc++ is needed by the C++ binaries
RUN apk add --no-cache ffmpeg libstdc++ \
&& addgroup -S app && adduser -S -G app app
Expand Down
Loading