22 lines
566 B
Docker
22 lines
566 B
Docker
FROM debian:bookworm
|
|
|
|
LABEL author="Tara Piccari" maintainer="tarapiccari@gmail.com"
|
|
|
|
SHELL [ "/bin/bash", "-c" ]
|
|
ENV HOME /root
|
|
ENV DOCKER 1
|
|
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
|
|
USER root
|
|
WORKDIR /
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN echo "LC_ALL=en_US.UTF-8" >> /etc/environment
|
|
RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
|
|
RUN echo "LANG=en_US.UTF-8" >> /etc/locale.conf
|
|
RUN echo "check-certificate = off" >> ~/.wgetrc
|
|
|
|
|
|
RUN apt update; apt-get upgrade -y
|
|
RUN apt-get install -y rsync zip unzip file git locales curl wget apt-utils
|
|
|
|
RUN locale-gen en_US.UTF-8
|