]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - support/docker/production/Dockerfile.buster
Explain view calculation on short videos, rewording
[github/Chocobozzz/PeerTube.git] / support / docker / production / Dockerfile.buster
... / ...
CommitLineData
1FROM node:10-buster-slim
2
3# Allow to pass extra options to the npm run build
4# eg: --light --light-fr to not build all client languages
5# (speed up build time if i18n is not required)
6ARG NPM_RUN_BUILD_OPTS
7
8# Install dependencies
9RUN apt update \
10 && apt install -y --no-install-recommends openssl ffmpeg python gnupg gosu \
11 && gosu nobody true \
12 && rm /var/lib/apt/lists/* -fR
13
14# Add peertube user
15RUN groupadd -r peertube \
16 && useradd -r -g peertube -m peertube
17
18# Install PeerTube
19COPY --chown=peertube:peertube . /app
20WORKDIR /app
21
22USER peertube
23
24RUN yarn install --pure-lockfile \
25 && npm run build -- $NPM_RUN_BUILD_OPTS \
26 && rm -r ./node_modules ./client/node_modules \
27 && yarn install --pure-lockfile --production \
28 && yarn cache clean
29
30USER root
31
32RUN mkdir /data /config
33RUN chown -R peertube:peertube /data /config
34
35ENV NODE_ENV production
36ENV NODE_CONFIG_DIR /config
37
38VOLUME /data
39VOLUME /config
40
41COPY ./support/docker/production/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
42ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
43
44# Run the application
45CMD ["npm", "start"]
46EXPOSE 9000