aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker/janitor/Dockerfile
diff options
context:
space:
mode:
authoram97 <andy.maldo@hotmail.com>2018-10-09 17:35:02 +0200
committerChocobozzz <me@florianbigard.com>2018-10-09 17:35:02 +0200
commitee7c25c767c357bd12570889f8ccd79ba9ea4eb9 (patch)
tree06478edd377bf8cfcf5e69a26fb696b37491ffc8 /support/docker/janitor/Dockerfile
parente2dc00a8feb8fe0ebfe92eb88aa13b1347b0fbf4 (diff)
downloadPeerTube-ee7c25c767c357bd12570889f8ccd79ba9ea4eb9.tar.gz
PeerTube-ee7c25c767c357bd12570889f8ccd79ba9ea4eb9.tar.zst
PeerTube-ee7c25c767c357bd12570889f8ccd79ba9ea4eb9.zip
Create new Docker dev image (#1173)
* Move the old dev docker files to support/docker/janitor * Create new Docker dev image
Diffstat (limited to 'support/docker/janitor/Dockerfile')
-rw-r--r--support/docker/janitor/Dockerfile32
1 files changed, 32 insertions, 0 deletions
diff --git a/support/docker/janitor/Dockerfile b/support/docker/janitor/Dockerfile
new file mode 100644
index 000000000..2b4f2b215
--- /dev/null
+++ b/support/docker/janitor/Dockerfile
@@ -0,0 +1,32 @@
1FROM janitortechnology/ubuntu-dev
2
3# Install PeerTube's dependencies.
4# Packages are from https://github.com/Chocobozzz/PeerTube#dependencies
5RUN sudo apt-get update -q && sudo apt-get install -qy \
6 ffmpeg \
7 postgresql \
8 openssl
9
10# Download PeerTube's source code.
11RUN git clone -b develop https://github.com/Chocobozzz/PeerTube /home/user/PeerTube
12WORKDIR /home/user/PeerTube
13
14# Configure the IDEs to use Janitor's source directory as workspace.
15ENV WORKSPACE /home/user/PeerTube/
16
17# Install dependencies.
18RUN yarn install --pure-lockfile
19
20# Configure Janitor for PeerTube.
21COPY --chown=user:user janitor.json /home/user/
22
23# Configure and build PeerTube.
24COPY create_user.sql /tmp/
25RUN sudo service postgresql start \
26 && sudo -u postgres psql --file=/tmp/create_user.sql \
27 && npm run build
28
29COPY --chown=user:user supervisord.conf /tmp/supervisord-extra.conf
30RUN cat /tmp/supervisord-extra.conf | sudo tee -a /etc/supervisord.conf
31
32EXPOSE 3000 9000