Skip to content

Commit

Permalink
Include ca-certificates package in Podman containers
Browse files Browse the repository at this point in the history
  • Loading branch information
emarsden committed Dec 2, 2023
1 parent 6cb58a1 commit 6928d0b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ license = "MIT"
description = "Download media content from a DASH-MPEG or DASH-WebM MPD manifest."
readme = "README.md"
repository = "https://github.com/emarsden/dash-mpd-cli"
documentation = "https://emarsden.github.io/dash-mpd-cli/"
keywords = ["video", "streaming", "DASH", "MPEG", "download"]
categories = ["command-line-utilities", "multimedia", "multimedia::video"]
edition = "2021"
Expand Down
3 changes: 2 additions & 1 deletion etc/Containerfile_linux_aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ LABEL org.opencontainers.image.description="Download media content from a DASH-M
# built for AMD64.
RUN apk update && \
apk upgrade && \
apk add --no-cache libc6-compat wget ffmpeg mkvtoolnix bento4 libxslt && \
apk add --no-cache ca-certificates libc6-compat wget ffmpeg mkvtoolnix bento4 libxslt && \
update-ca-certificates && \
wget -q -O /tmp/shaka-packager https://github.com/shaka-project/shaka-packager/releases/latest/download/packager-linux-arm64 && \
mv /tmp/shaka-packager /usr/local/bin && \
chmod +x /usr/local/bin/shaka-packager && \
Expand Down
3 changes: 2 additions & 1 deletion etc/Containerfile_linux_amd64
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ LABEL org.opencontainers.image.description="Download media content from a DASH-M
# - Shaka packager: MIT
RUN apk update && \
apk upgrade && \
apk add --no-cache ffmpeg mkvtoolnix bento4 libxslt && \
apk add --no-cache ca-certificates ffmpeg mkvtoolnix bento4 libxslt && \
update-ca-certificates && \
mkdir /content && \
chown root.root /content && \
chmod a=rwx,o+t /content
Expand Down

0 comments on commit 6928d0b

Please sign in to comment.