Update Janitor Dockerfile
authorJan Keromnes <janx@linux.com>
Wed, 16 May 2018 20:25:56 +0000 (20:25 +0000)
committerChocobozzz <me@florianbigard.com>
Thu, 17 May 2018 06:18:56 +0000 (08:18 +0200)
- Upgrade to newer janitortechnology/ubuntu-dev base image
- Fix workspace folder
- Add Theia port
- Dockerfile best practices

support/docker/dev/Dockerfile
support/docker/dev/janitor.json

index 0118a824852427e33bdb76e833d3e0428c3527cd..2b4f2b215f74aa05870b0bc8bbc52e8682406140 100644 (file)
@@ -1,5 +1,4 @@
-FROM janx/ubuntu-dev
-MAINTAINER Jan Keromnes <janx@linux.com>
+FROM janitortechnology/ubuntu-dev
 
 # Install PeerTube's dependencies.
 # Packages are from https://github.com/Chocobozzz/PeerTube#dependencies
@@ -12,23 +11,22 @@ RUN sudo apt-get update -q && sudo apt-get install -qy \
 RUN git clone -b develop https://github.com/Chocobozzz/PeerTube /home/user/PeerTube
 WORKDIR /home/user/PeerTube
 
-# Configure Cloud9 IDE to use PeerTube's source directory as workspace (-w).
-RUN sudo sed -i "s/-w \/home\/user/-w \/home\/user\/PeerTube/" /etc/supervisord.conf
+# Configure the IDEs to use Janitor's source directory as workspace.
+ENV WORKSPACE /home/user/PeerTube/
 
 # Install dependencies.
 RUN yarn install --pure-lockfile
 
 # Configure Janitor for PeerTube.
-ADD janitor.json /home/user/
-RUN sudo chown user:user /home/user/janitor.json
+COPY --chown=user:user janitor.json /home/user/
 
 # Configure and build PeerTube.
-ADD create_user.sql /tmp/
+COPY create_user.sql /tmp/
 RUN sudo service postgresql start \
  && sudo -u postgres psql --file=/tmp/create_user.sql \
  && npm run build
 
-ADD supervisord.conf /tmp/supervisord-extra.conf
+COPY --chown=user:user supervisord.conf /tmp/supervisord-extra.conf
 RUN cat /tmp/supervisord-extra.conf | sudo tee -a /etc/supervisord.conf
 
 EXPOSE 3000 9000
index 4051e8bcdb1a092ab2b35cc15c9bc22f411b472f..5acdf3060fc4493148ee47191c475610803606bc 100644 (file)
       "label": "Cloud9",
       "proxy": "https"
     },
+    "8090": {
+      "label": "Theia",
+      "proxy": "https"
+    },
     "9000": {
       "label": "PeerTube API",
       "proxy": "https"