django-orchestra/scripts/containers/Dockerfile

13 lines
347 B
Docker
Raw Normal View History

FROM debian:latest
2015-10-03 10:37:43 +00:00
RUN apt-get -y update && apt-get install -y curl sudo
2015-10-03 18:10:42 +00:00
RUN export TERM=xterm; curl -L http://git.io/orchestra-admin | bash -s install_requirements
RUN apt-get clean
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 && \
adduser orchestra sudo