mirror of https://github.com/zulip/zulip.git
13 lines
221 B
Docker
13 lines
221 B
Docker
|
FROM ubuntu:trusty
|
||
|
|
||
|
EXPOSE 9991
|
||
|
|
||
|
RUN apt-get update && apt-get install -y \
|
||
|
python-pbs \
|
||
|
wget
|
||
|
|
||
|
RUN useradd -d /home/zulip -m zulip && echo 'zulip ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|
||
|
|
||
|
USER zulip
|
||
|
WORKDIR /srv/zulip
|