mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 03:00:08 +00:00
14 lines
350 B
Docker
14 lines
350 B
Docker
FROM ubuntu
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y sudo locales
|
|
|
|
RUN localedef -i en_US -f UTF-8 en_US.UTF-8 \
|
|
&& useradd -m -s /bin/bash correl \
|
|
&& echo 'correl ALL=(ALL) NOPASSWD:ALL' >>/etc/sudoers
|
|
|
|
USER correl
|
|
WORKDIR /home/correl
|
|
COPY . /home/correl/dotfiles
|
|
RUN DEBUG=1 /home/correl/dotfiles/provision.sh
|
|
CMD ["/usr/bin/zsh"]
|