Dockerfile: fix LegacyKeyValueFormat warnings

This commit is contained in:
XhmikosR
2025-11-22 08:13:22 +02:00
committed by GitHub
parent 21ce4c0266
commit e2b2979535

View File

@@ -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