Skip to content

Commit

Permalink
Merge pull request jellyfin#546 from Gauvino/master
Browse files Browse the repository at this point in the history
Refactor Dockerfile
  • Loading branch information
iwalton3 authored Feb 6, 2024
2 parents 411032f + de69abb commit d05f06d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deployment/Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG IMG=debian
ARG TAG=buster
ARG TAG=bookworm
FROM $IMG:$TAG

# Docker build arguments
Expand All @@ -14,9 +14,9 @@ ENV IS_DOCKER=YES

# Prepare Debian build environment
RUN apt-get update \
&& DEBIAN_FRONTEND="noninteractive" TZ="America/New_York" \
apt-get install -y debhelper mmv git curl devscripts equivs

&& DEBIAN_FRONTEND="noninteractive" TZ="America/New_York" \
apt-get install --no-install-recommends -y \
debhelper mmv git curl devscripts equivs

# Link to build script
RUN ln -sf ${SOURCE_DIR}/deployment/build.debian /build.sh
Expand Down

0 comments on commit d05f06d

Please sign in to comment.