diff options
author | Chocobozzz <me@florianbigard.com> | 2019-08-07 12:04:06 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-08-07 12:07:59 +0200 |
commit | 51c3544718f751dbba4ece9aec39c53fab524c88 (patch) | |
tree | bf00c6b0f596642a1db6ac6d61229ae7aaa72bc3 /support/docker | |
parent | 0763044f7d11a56dd5c5c424771dd83c76159de2 (diff) | |
download | PeerTube-51c3544718f751dbba4ece9aec39c53fab524c88.tar.gz PeerTube-51c3544718f751dbba4ece9aec39c53fab524c88.tar.zst PeerTube-51c3544718f751dbba4ece9aec39c53fab524c88.zip |
Deprecate Node 8
The support ends on December 2019: https://github.com/nodejs/Release#release-schedule
Diffstat (limited to 'support/docker')
-rw-r--r-- | support/docker/dev/Dockerfile | 2 | ||||
-rw-r--r-- | support/docker/production/Dockerfile.stretch | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/support/docker/dev/Dockerfile b/support/docker/dev/Dockerfile index 8e049f3f6..991cf05e2 100644 --- a/support/docker/dev/Dockerfile +++ b/support/docker/dev/Dockerfile | |||
@@ -17,7 +17,7 @@ RUN apt-get update -q && apt-get install -qy \ | |||
17 | postgresql \ | 17 | postgresql \ |
18 | postgresql-contrib \ | 18 | postgresql-contrib \ |
19 | redis-server \ | 19 | redis-server \ |
20 | && curl -sL https://deb.nodesource.com/setup_8.x | bash - \ | 20 | && curl -sL https://deb.nodesource.com/setup_10.x | bash - \ |
21 | && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ | 21 | && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ |
22 | && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ | 22 | && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ |
23 | && apt-get update \ | 23 | && apt-get update \ |
diff --git a/support/docker/production/Dockerfile.stretch b/support/docker/production/Dockerfile.stretch index c653233b6..b6de4bd9b 100644 --- a/support/docker/production/Dockerfile.stretch +++ b/support/docker/production/Dockerfile.stretch | |||
@@ -1,4 +1,4 @@ | |||
1 | FROM node:8-stretch | 1 | FROM node:10-stretch |
2 | 2 | ||
3 | # Allow to pass extra options to the npm run build | 3 | # Allow to pass extra options to the npm run build |
4 | # eg: --light --light-fr to not build all client languages | 4 | # eg: --light --light-fr to not build all client languages |