Skip to content

Commit

Permalink
fix Dockerfile warnings
Browse files Browse the repository at this point in the history
 - LegacyKeyValueFormat: "LABEL key=value" should be used instead of legacy "LABEL key value" format (line 98)
 - InvalidDefaultArgInFrom: Default value for ARG ghcr.io/linuxserver/baseimage-alpine:${ALPINE_VER} results in empty or invalid base image name (line 5)
 - InvalidDefaultArgInFrom: Default value for ARG alpine:${ALPINE_VER} results in empty or invalid base image name (line 24)
  • Loading branch information
wiserain committed Nov 25, 2024
1 parent 465426e commit 52a9bf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG ALPINE_VER
ARG ALPINE_VER=3.19
ARG LIBTORRENT_VER=latest

FROM ghcr.io/by275/libtorrent:${LIBTORRENT_VER}-alpine${ALPINE_VER} AS libtorrent
Expand Down Expand Up @@ -95,7 +95,7 @@ RUN \
#
FROM base
LABEL maintainer="wiserain"
LABEL org.opencontainers.image.source https://github.com/wiserain/docker-flexget
LABEL org.opencontainers.image.source=https://github.com/wiserain/docker-flexget

ENV \
TZ=Etc/UTC \
Expand Down

0 comments on commit 52a9bf0

Please sign in to comment.