-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1725 from brecke/new-etherpad
- Loading branch information
Showing
473 changed files
with
32,033 additions
and
37,933 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule 3akai-ux
updated
39 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,14 +26,41 @@ | |
# $ docker run -it --name=hilary --net=host oae-hilary:latest | ||
# | ||
|
||
FROM oaeproject/oae-hilary-deps-docker:v0.4 | ||
FROM node:10-alpine | ||
|
||
LABEL Name=OAE-Hilary | ||
LABEL Author=ApereoFoundation | ||
LABEL [email protected] | ||
|
||
RUN apk --update --no-cache add \ | ||
git \ | ||
python \ | ||
ghostscript \ | ||
graphicsmagick | ||
|
||
# Installs the 3.8 Chromium package. | ||
RUN apk update && apk upgrade && \ | ||
echo @3.8 http://nl.alpinelinux.org/alpine/v3.8/community >> /etc/apk/repositories && \ | ||
echo @3.8 http://nl.alpinelinux.org/alpine/v3.8/main >> /etc/apk/repositories && \ | ||
apk add --no-cache \ | ||
[email protected] \ | ||
[email protected] \ | ||
[email protected] \ | ||
[email protected] \ | ||
[email protected] | ||
|
||
# Tell Puppeteer to skip installing Chrome. We'll be using the installed package. | ||
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true | ||
|
||
# Install libreoffice | ||
RUN apk add --no-cache libreoffice openjdk8-jre | ||
|
||
# install nodegit | ||
RUN apk --update --no-cache add build-base libgit2-dev | ||
RUN ln -s /usr/lib/libcurl.so.4 /usr/lib/libcurl-gnutls.so.4 | ||
|
||
# Set the base directory | ||
ENV HILARY_DIR usr/src/Hilary | ||
ENV HILARY_DIR /usr/src/Hilary | ||
RUN mkdir -p ${HILARY_DIR} \ | ||
&& chown -R node:node ${HILARY_DIR} \ | ||
&& chmod -R 755 ${HILARY_DIR} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// eslint-disable-next-line no-global-assign | ||
require = require('esm')(module /* , options */); | ||
// Import the rest of our application. | ||
module.exports = require('./app.js'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.