From: XhmikosR Date: Sat, 22 Nov 2025 06:13:22 +0000 (+0200) Subject: Dockerfile: fix LegacyKeyValueFormat warnings X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=e2b2979535d6a3101a1bfbc0fed3385a7d439860;p=stevenblack-hosts.git Dockerfile: fix LegacyKeyValueFormat warnings --- diff --git a/Dockerfile b/Dockerfile index 8053332e0..82f67d722 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM docker.io/python:3-alpine -ENV IN_CONTAINER 1 +ENV IN_CONTAINER=1 RUN apk add --no-cache git sudo @@ -8,6 +8,6 @@ COPY . /hosts RUN pip install --no-cache-dir --upgrade -r /hosts/requirements.txt -ENV PATH $PATH:/hosts +ENV PATH=$PATH:/hosts WORKDIR /hosts