Skip to content

Commit

Permalink
Dockerfile: use ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
anthwlock committed Aug 14, 2024
1 parent 68a7990 commit 13cafed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pull base image
FROM ubuntu:bionic AS build
FROM ubuntu:22.04 AS build
LABEL stage=intermediate
ARG FF_VER=shared

Expand All @@ -19,11 +19,11 @@ RUN /usr/bin/make FF_VER=$FF_VER && strip untrunc


# deliver clean image
FROM ubuntu:bionic
FROM ubuntu:22.04
ARG FF_VER=shared

RUN apt-get update && [ "$FF_VER" = 'shared' ] && \
apt-get -y install --no-install-recommends libavformat57 libavcodec57 libavutil55 && \
apt-get -y install --no-install-recommends libavformat58 libavcodec58 libavutil56 && \
rm -rf /var/lib/apt/lists/* || true
COPY --from=build /untrunc-src/untrunc /bin/untrunc

Expand Down

0 comments on commit 13cafed

Please sign in to comment.