Pre-build PeerTube again in dev Dockerfile.

PeerTube pre-build was removed in #207 but is still valuable.
pull/267/head
Jan Keromnes 2018-01-25 12:35:12 +01:00 committed by Chocobozzz
parent a585af352c
commit 897cab462b
1 changed files with 3 additions and 2 deletions

View File

@ -24,8 +24,9 @@ RUN sudo chown user:user /home/user/janitor.json
# Configure and build PeerTube.
ADD create_user.sql /tmp/
RUN sudo service postgresql start && \
sudo -u postgres psql --file=/tmp/create_user.sql
RUN sudo service postgresql start \
&& sudo -u postgres psql --file=/tmp/create_user.sql \
&& npm run build
ADD supervisord.conf /tmp/supervisord-extra.conf
RUN cat /tmp/supervisord-extra.conf | sudo tee -a /etc/supervisord.conf