mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-14 11:09:30 +00:00
de2ec05c6d
Attempt to correct an issue in the hub.docker.com build: [91m/bin/sh: 1: /home/correl/dotfiles/provision.sh: Text file busy [0m Removing intermediate container b72e6ce14652 The command '/bin/sh -c sudo chown -R correl:correl . && /home/correl/dotfiles/provision.sh -D' returned a non-zero code: 2
15 lines
379 B
Docker
15 lines
379 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 sudo chown -R correl:correl .
|
|
RUN /home/correl/dotfiles/provision.sh -D
|
|
CMD ["/usr/bin/zsh"]
|