Skip to content
This repository has been archived by the owner on Mar 10, 2019. It is now read-only.

Commit

Permalink
Dockerfile: minor changes to comments
Browse files Browse the repository at this point in the history
  • Loading branch information
muxator committed Dec 1, 2018
1 parent 73b5c7e commit 65af284
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@
#
# Version 1.0

# Use Docker's nodejs, which is based on debian
# use Docker's nodejs, which is based on debian
FROM node:latest
LABEL maintainer="Etherpad team, https://github.com/ether/etherpad-lite"

# Get Etherpad-lite's other dependencies
# get etherpad's other dependencies
RUN apt-get update && apt-get install -y \
git-core \
supervisor \
&& rm -rf /var/lib/apt/lists/*

# Grab the latest Git version
# grab the latest stable git version
RUN cd /opt && git clone https://github.com/ether/etherpad-lite.git etherpad

# Install node dependencies
# install node dependencies for Etherpad
RUN /opt/etherpad/bin/installDeps.sh

# Add conf files
# add configuration files
ADD settings.json /opt/etherpad/settings.json
ADD supervisor.conf /etc/supervisor/supervisor.conf

Expand Down

0 comments on commit 65af284

Please sign in to comment.