2015-09-30 16:26:44 +00:00
|
|
|
FROM debian:latest
|
2015-09-30 18:24:45 +00:00
|
|
|
|
2015-10-03 10:37:43 +00:00
|
|
|
RUN apt-get -y update && apt-get install -y curl sudo
|
2015-09-30 18:24:45 +00:00
|
|
|
|
2015-10-03 18:10:42 +00:00
|
|
|
RUN export TERM=xterm; curl -L http://git.io/orchestra-admin | bash -s install_requirements
|
2015-09-30 18:24:45 +00:00
|
|
|
|
2015-09-30 16:26:44 +00:00
|
|
|
RUN apt-get clean
|
2015-09-30 18:24:45 +00:00
|
|
|
|
2015-10-01 18:02:23 +00:00
|
|
|
RUN useradd orchestra --shell /bin/bash && \
|
2015-10-02 11:14:24 +00:00
|
|
|
{ echo "orchestra:orchestra" | chpasswd; } && \
|
2015-10-01 18:02:23 +00:00
|
|
|
mkhomedir_helper orchestra && \
|
2015-09-30 18:24:45 +00:00
|
|
|
adduser orchestra sudo
|