Update node in docker to version 14 (#4844)

This commit is contained in:
Stefan 2021-02-22 07:34:34 +01:00 committed by GitHub
parent 40d7480d5b
commit de186fbe36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
#
# Author: muxator
FROM node:10-buster-slim
FROM node:14-buster-slim
LABEL maintainer="Etherpad team, https://github.com/ether/etherpad-lite"
# plugins to install while building the container. By default no plugins are
@ -74,4 +74,4 @@ COPY --chown=etherpad:0 ./settings.json.docker /opt/etherpad-lite/settings.json
RUN chmod -R g=u .
EXPOSE 9001
CMD ["node", "--experimental-worker", "src/node/server.js"]
CMD ["node", "src/node/server.js"]