Skip to content

Commit

Permalink
Corriger les warnings dans le Dockerfile de tests
Browse files Browse the repository at this point in the history
Warning: LegacyKeyValueFormat
  • Loading branch information
philippe-cbw committed Aug 27, 2024
1 parent 85097cb commit 7118542
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile.test
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:22.04

ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

RUN apt update \
&& apt install ca-certificates python3 python3-pip php8.1-cli php8.1-xml sslscan -y --no-install-recommends \
Expand All @@ -15,9 +15,9 @@ RUN python3 -m pip install --upgrade pip
RUN pip3 install -U setuptools --no-cache-dir
RUN mkdir /usr/src/app

ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US:en
ENV LC_ALL=en_US.UTF-8

WORKDIR /usr/src/app

Expand Down

0 comments on commit 7118542

Please sign in to comment.