]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/docker/production/Dockerfile.buster
fix link in dependencies version guide (#3288)
[github/Chocobozzz/PeerTube.git] / support / docker / production / Dockerfile.buster
CommitLineData
72698686 1FROM node:10-buster-slim
e8395f02 2
29706739 3# Allow to pass extra options to the npm run build
9c85ee2e
AM
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
e8395f02 8# Install dependencies
7593d9f8 9RUN apt update \
8d3fe90c 10 && apt install -y --no-install-recommends openssl ffmpeg python ca-certificates gnupg gosu \
244e955e
FA
11 && gosu nobody true \
12 && rm /var/lib/apt/lists/* -fR
e8395f02 13
c7574e86 14# Add peertube user
399d20ea
FP
15RUN groupadd -r peertube \
16 && useradd -r -g peertube -m peertube
17
c7574e86 18# Install PeerTube
72698686 19COPY --chown=peertube:peertube . /app
c7574e86 20WORKDIR /app
4aeb67a5
C
21
22USER peertube
c7574e86
A
23
24RUN yarn install --pure-lockfile \
9c85ee2e 25 && npm run build -- $NPM_RUN_BUILD_OPTS \
d1e59223 26 && rm -r ./node_modules ./client/node_modules \
904a463c 27 && yarn install --pure-lockfile --production \
e5095ca5 28 && yarn cache clean
e8395f02 29
fd5e57bb
C
30USER root
31
32RUN mkdir /data /config
33RUN chown -R peertube:peertube /data /config
34
e8395f02 35ENV NODE_ENV production
fd5e57bb 36ENV NODE_CONFIG_DIR /config
e8395f02 37
399d20ea 38VOLUME /data
fd5e57bb 39VOLUME /config
399d20ea 40
4aeb67a5
C
41COPY ./support/docker/production/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
42ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
399d20ea 43
e8395f02 44# Run the application
29706739 45CMD ["npm", "start"]
e8395f02 46EXPOSE 9000