Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker: Update to alpine 3.17 #2754

Merged
merged 1 commit into from
Nov 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
runs-on: ubuntu-20.04
container:
image: alpine:3.16
image: alpine:3.17
steps:
- name: Install Dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=alpine:3.16
ARG BASE_IMAGE=alpine:3.17
FROM ${BASE_IMAGE} AS builder

RUN apk add --no-cache \
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile.debug
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# docker build -t gerbera-debug . -f Dockerfile.debug
ARG BASE_IMAGE=alpine:3.16
ARG BASE_IMAGE=alpine:3.17
FROM ${BASE_IMAGE} AS builder

RUN apk add --no-cache \
Expand All @@ -19,8 +19,8 @@ RUN apk add --no-cache \
sqlite-dev \
tini \
util-linux-dev \
libexecinfo-dev \
libexecinfo \
# libexecinfo-dev \
# libexecinfo \
# packages to build libupnp \
autoconf \
automake \
Expand Down Expand Up @@ -121,7 +121,7 @@ RUN apk add --no-cache \
zlib \
ffmpeg4 \
libheif-tools \
libexecinfo \
# libexecinfo \
vlc

# Copy libupnp
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ sudo make install
| curl | | | | Optional | Enables web services | Enabled |
| [taglib] | 1.12 | 1.12 | 1.13 | Optional | Audio tag support | Enabled |
| libmagic | | | | Optional | File type detection | Enabled |
| [wavpack] | 5.1.0 | 5.4.0 | 5.5.0 | Optional | WavPack metadata support | Disabled |
| [wavpack] | 5.1.0 | 5.4.0 | 5.6.0 | Optional | WavPack metadata support | Disabled |
| [libmatroska] | | 1.6.3 | 1.7.1 | Optional | MKV metadata | Enabled |
| [libebml] | | 1.4.2 | 1.4.4 | Optional | requird by [libmatroska] | Enabled |
| ffmpeg/libav | | | | Optional | File metadata | Disabled |
Expand Down
2 changes: 1 addition & 1 deletion scripts/versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ else
PUGIXML="1.13"
PUPNP="1.14.14"
SPDLOG="1.11.0"
WAVPACK="5.5.0"
WAVPACK="5.6.0"
TAGLIB="1.13"

fi
Expand Down