FROM debian:bookworm-slim LABEL author="Makaren0" maintainer="Makaffe@hotmail.com" ENV DEBIAN_FRONTEND=noninteractive ENV DEBCONF_NOWARNINGS="yes" RUN apt update; apt upgrade -y\ && dpkg --add-architecture i386 \ && apt install -y unzip curl wget tar gzip python3 ca-certificates RUN apt-get update \ && apt-get clean \ && apt-get autoremove RUN apt-get install -y lib32gcc-s1 libicu-dev RUN apt --fix-broken install \ && apt-get update \ && apt-get upgrade -y \ && dpkg --configure -a \ && apt-get install -f RUN adduser --disabled-password --home /home/container container USER container ENV USER=container HOME=/home/container WORKDIR /home/container COPY ./entrypoint.sh /entrypoint.sh CMD ["/bin/bash", "/entrypoint.sh"]