22 lines
No EOL
487 B
Docker
22 lines
No EOL
487 B
Docker
FROM archlinux:latest
|
|
|
|
|
|
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 /
|
|
|
|
RUN pacman --noconfirm -Syu
|
|
RUN pacman --noconfirm -S rsync zip unzip file openssh
|
|
|
|
|
|
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 pacman --noconfirm -S glibc
|
|
RUN locale-gen en_US.UTF-8 |