aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker/production/Dockerfile.stretch
diff options
context:
space:
mode:
authorBen Lubar <ben.lubar+github@gmail.com>2019-12-12 02:41:52 -0600
committerChocobozzz <me@florianbigard.com>2019-12-12 09:41:52 +0100
commit72698686828b7b80a336d83fdbb1707e3b7a61fe (patch)
tree64b22b0189de86b54f361093ebc5c30204a59a80 /support/docker/production/Dockerfile.stretch
parentc3340977343608838203d910bac77d4a59758274 (diff)
downloadPeerTube-72698686828b7b80a336d83fdbb1707e3b7a61fe.tar.gz
PeerTube-72698686828b7b80a336d83fdbb1707e3b7a61fe.tar.zst
PeerTube-72698686828b7b80a336d83fdbb1707e3b7a61fe.zip
Add support for HLS in the Docker container. (#2324)
* Add support for HLS in the Docker container. * Remove comment from Dockerfile.stretch
Diffstat (limited to 'support/docker/production/Dockerfile.stretch')
-rw-r--r--support/docker/production/Dockerfile.stretch5
1 files changed, 2 insertions, 3 deletions
diff --git a/support/docker/production/Dockerfile.stretch b/support/docker/production/Dockerfile.stretch
index 720f266d3..32c5266c5 100644
--- a/support/docker/production/Dockerfile.stretch
+++ b/support/docker/production/Dockerfile.stretch
@@ -1,4 +1,4 @@
1FROM node:10-stretch-slim 1FROM node:10-buster-slim
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
@@ -16,9 +16,8 @@ RUN groupadd -r peertube \
16 && useradd -r -g peertube -m peertube 16 && useradd -r -g peertube -m peertube
17 17
18# Install PeerTube 18# Install PeerTube
19COPY --chown=peertube:peertube . /app
19WORKDIR /app 20WORKDIR /app
20COPY . ./
21RUN chown -R peertube:peertube /app
22 21
23USER peertube 22USER peertube
24 23