From add2ed3f96d88e386d30718e9283b5e7bf510555 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20R=C3=BCger?= Date: Mon, 2 Sep 2024 21:58:38 +0200 Subject: [PATCH] Dockerfile: Use ubuntu 24.04, expose 8443 --- DockerfileAlpine | 2 +- DockerfileDebian | 2 +- DockerfileUbuntu | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/DockerfileAlpine b/DockerfileAlpine index 346acade..9f524375 100644 --- a/DockerfileAlpine +++ b/DockerfileAlpine @@ -16,7 +16,7 @@ RUN make zip NO_SANITIZERS=1 # Use Alpine Linux as base image for the final image FROM alpine:latest -EXPOSE 80 443 +EXPOSE 80 443 8443 # Install necessary runtime dependencies RUN apk --no-cache add ffmpeg curl ca-certificates bash diff --git a/DockerfileDebian b/DockerfileDebian index 3dfa336b..4c485b37 100644 --- a/DockerfileDebian +++ b/DockerfileDebian @@ -11,7 +11,7 @@ RUN curl -f https://raw.githubusercontent.com/toniebox-reverse-engineering/tonie RUN make zip FROM debian:latest -EXPOSE 80 443 +EXPOSE 80 443 8443 RUN apt-get update \ && apt-get install -y --no-install-recommends libubsan1 ffmpeg curl ca-certificates \ diff --git a/DockerfileUbuntu b/DockerfileUbuntu index 74b6705c..f6a60993 100644 --- a/DockerfileUbuntu +++ b/DockerfileUbuntu @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 as buildenv +FROM ubuntu:24.04 as buildenv RUN apt-get update \ && apt-get install -y --no-install-recommends gcc protobuf-c-compiler build-essential git zip curl @@ -10,8 +10,8 @@ RUN curl -f https://raw.githubusercontent.com/toniebox-reverse-engineering/tonie RUN curl -f https://raw.githubusercontent.com/toniebox-reverse-engineering/tonies-json/release/tonieboxes.json -o /buildenv/contrib/config/tonieboxes.json || true RUN make zip -FROM ubuntu:22.04 -EXPOSE 80 443 +FROM ubuntu:24.04 +EXPOSE 80 443 8443 RUN apt-get update \ && apt-get install -y --no-install-recommends libubsan1 ffmpeg curl ca-certificates \