ADD rootfs.tar.xz / # buildkit |
CMD ["bash"] |
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 /bin/bash -c echo "LC_ALL=en_US.UTF-8" >> /etc/environment # buildkit |
RUN /bin/bash -c echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen # buildkit |
RUN /bin/bash -c echo "LANG=en_US.UTF-8" >> /etc/locale.conf # buildkit |
RUN /bin/bash -c apt update; apt-get upgrade -y # buildkit |
RUN /bin/bash -c apt-get install -y rsync zip unzip file git locales # buildkit |
RUN /bin/bash -c locale-gen en_US.UTF-8 # buildkit |