Fix Dockerfiles deprecation warning

This commit is contained in:
Philippe Teuwen 2024-09-10 00:14:37 +02:00
parent 13cad28d2a
commit fd1d088099
14 changed files with 22 additions and 22 deletions

View file

@ -1,6 +1,6 @@
FROM archlinux:base
ENV LANG C
ENV LANG=C
RUN pacman -Syu --noconfirm
RUN pacman-db-upgrade
# qt5-base skipped

View file

@ -1,7 +1,7 @@
FROM debian:bullseye-slim
ENV LANG C
ENV DEBIAN_FRONTEND noninteractive
ENV LANG=C
ENV DEBIAN_FRONTEND=noninteractive
# qtbase5-dev skipped
RUN apt-get update && \
apt-get upgrade -y && \

View file

@ -1,7 +1,7 @@
FROM debian:bookworm-slim
ENV LANG C
ENV DEBIAN_FRONTEND noninteractive
ENV LANG=C
ENV DEBIAN_FRONTEND=noninteractive
# qtbase5-dev skipped
RUN apt-get update && \
apt-get upgrade -y && \

View file

@ -1,7 +1,7 @@
FROM debian:trixie-slim
ENV LANG C
ENV DEBIAN_FRONTEND noninteractive
ENV LANG=C
ENV DEBIAN_FRONTEND=noninteractive
# qtbase5-dev skipped
RUN apt-get update && \
apt-get upgrade -y && \

View file

@ -1,6 +1,6 @@
FROM fedora:36
ENV LANG C
ENV LANG=C
# qt5-qtbase-devel skipped
RUN dnf install -y passwd sudo git make gcc gcc-c++ arm-none-eabi-gcc-cs arm-none-eabi-newlib readline-devel bzip2-devel lz4-devel bluez-libs-devel python3-devel openssl-devel libatomic findutils

View file

@ -1,6 +1,6 @@
FROM fedora:37
ENV LANG C
ENV LANG=C
# qt5-qtbase-devel skipped
RUN dnf install -y passwd sudo git make gcc gcc-c++ arm-none-eabi-gcc-cs arm-none-eabi-newlib readline-devel bzip2-devel lz4-devel bluez-libs-devel python3-devel openssl-devel libatomic findutils

View file

@ -1,6 +1,6 @@
FROM homebrew/brew
ENV LANG C
ENV LANG=C
USER linuxbrew
WORKDIR "/home/linuxbrew"

View file

@ -1,7 +1,7 @@
FROM kalilinux/kali-rolling
ENV LANG C
ENV DEBIAN_FRONTEND noninteractive
ENV LANG=C
ENV DEBIAN_FRONTEND=noninteractive
# qtbase5-dev skipped
RUN apt-get update && \
apt-get upgrade -y && \

View file

@ -1,6 +1,6 @@
FROM opensuse/leap
ENV LANG C
ENV LANG=C
# libqt5-qtbase-devel skipped
RUN zypper --non-interactive install --no-recommends shadow sudo git patterns-devel-base-devel_basis gcc-c++ readline-devel libbz2-devel liblz4-devel bluez-devel python3-devel libopenssl-devel

View file

@ -1,6 +1,6 @@
FROM opensuse/tumbleweed
ENV LANG C
ENV LANG=C
# libqt5-qtbase-devel skipped
RUN zypper --non-interactive install --no-recommends shadow sudo git patterns-devel-base-devel_basis gcc-c++ readline-devel libbz2-devel liblz4-devel bluez-devel python3-devel libopenssl-devel cross-arm-none-gcc12 cross-arm-none-newlib-devel

View file

@ -1,7 +1,7 @@
FROM parrotsec/core:latest
ENV LANG C
ENV DEBIAN_FRONTEND noninteractive
ENV LANG=C
ENV DEBIAN_FRONTEND=noninteractive
# qtbase5-dev skipped
RUN apt-get update && \
apt-get upgrade -y && \

View file

@ -1,7 +1,7 @@
FROM ubuntu:18.04
ENV LANG C
ENV DEBIAN_FRONTEND noninteractive
ENV LANG=C
ENV DEBIAN_FRONTEND=noninteractive
# qtbase5-dev skipped
# python3 skipped, not yet searchable with pkg-config python3
RUN apt-get update && \

View file

@ -1,7 +1,7 @@
FROM ubuntu:20.04
ENV LANG C
ENV DEBIAN_FRONTEND noninteractive
ENV LANG=C
ENV DEBIAN_FRONTEND=noninteractive
# qtbase5-dev skipped
RUN apt-get update && \
apt-get upgrade -y && \

View file

@ -1,7 +1,7 @@
FROM ubuntu:22.04
ENV LANG C
ENV DEBIAN_FRONTEND noninteractive
ENV LANG=C
ENV DEBIAN_FRONTEND=noninteractive
# qtbase5-dev skipped
RUN apt-get update && \
apt-get upgrade -y && \