Skip to content

Commit

Permalink
Merge pull request #213 from mrueg/update-docker
Browse files Browse the repository at this point in the history
Dockerfile: Use ubuntu 24.04, expose 8443
  • Loading branch information
SciLor committed Sep 2, 2024
2 parents 52c25b9 + add2ed3 commit 94ce4e4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DockerfileAlpine
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion DockerfileDebian
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
6 changes: 3 additions & 3 deletions DockerfileUbuntu
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 \
Expand Down

0 comments on commit 94ce4e4

Please sign in to comment.