2021-02-04 14:29:24 +01:00
|
|
|
FROM node:12-buster-slim
|
2018-01-29 08:52:20 +01:00
|
|
|
|
2019-07-08 16:09:13 +02:00
|
|
|
# Allow to pass extra options to the npm run build
|
2019-04-19 11:58:01 +02:00
|
|
|
# eg: --light --light-fr to not build all client languages
|
|
|
|
# (speed up build time if i18n is not required)
|
|
|
|
ARG NPM_RUN_BUILD_OPTS
|
|
|
|
|
2018-01-29 08:52:20 +01:00
|
|
|
# Install dependencies
|
2019-07-08 16:07:58 +02:00
|
|
|
RUN apt update \
|
2021-05-06 13:14:05 +02:00
|
|
|
&& apt install -y --no-install-recommends openssl ffmpeg python ca-certificates gnupg gosu build-essential curl \
|
2019-12-04 00:51:55 +01:00
|
|
|
&& gosu nobody true \
|
|
|
|
&& rm /var/lib/apt/lists/* -fR
|
2018-01-29 08:52:20 +01:00
|
|
|
|
2018-03-23 14:33:51 +01:00
|
|
|
# Add peertube user
|
2018-04-15 22:28:05 +02:00
|
|
|
RUN groupadd -r peertube \
|
|
|
|
&& useradd -r -g peertube -m peertube
|
|
|
|
|
2018-03-23 14:33:51 +01:00
|
|
|
# Install PeerTube
|
2019-12-12 09:41:52 +01:00
|
|
|
COPY --chown=peertube:peertube . /app
|
2018-03-23 14:33:51 +01:00
|
|
|
WORKDIR /app
|
2018-04-16 18:44:57 +02:00
|
|
|
|
|
|
|
USER peertube
|
2018-03-23 14:33:51 +01:00
|
|
|
|
|
|
|
RUN yarn install --pure-lockfile \
|
2019-04-19 11:58:01 +02:00
|
|
|
&& npm run build -- $NPM_RUN_BUILD_OPTS \
|
2018-08-08 10:10:11 +02:00
|
|
|
&& rm -r ./node_modules ./client/node_modules \
|
2018-08-10 10:37:16 +02:00
|
|
|
&& yarn install --pure-lockfile --production \
|
2018-08-09 19:34:39 +02:00
|
|
|
&& yarn cache clean
|
2018-01-29 08:52:20 +01:00
|
|
|
|
2018-05-07 18:39:42 +02:00
|
|
|
USER root
|
|
|
|
|
|
|
|
RUN mkdir /data /config
|
|
|
|
RUN chown -R peertube:peertube /data /config
|
|
|
|
|
2018-01-29 08:52:20 +01:00
|
|
|
ENV NODE_ENV production
|
2018-05-07 18:39:42 +02:00
|
|
|
ENV NODE_CONFIG_DIR /config
|
2018-01-29 08:52:20 +01:00
|
|
|
|
2018-04-15 22:28:05 +02:00
|
|
|
VOLUME /data
|
2018-05-07 18:39:42 +02:00
|
|
|
VOLUME /config
|
2018-04-15 22:28:05 +02:00
|
|
|
|
2020-03-03 00:29:52 +01:00
|
|
|
COPY ./support/docker/production/entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|
2018-04-15 22:28:05 +02:00
|
|
|
|
2020-11-21 17:32:42 +01:00
|
|
|
# Expose API and RTMP
|
|
|
|
EXPOSE 9000 1935
|
|
|
|
|
2018-01-29 08:52:20 +01:00
|
|
|
# Run the application
|
2019-07-08 16:09:13 +02:00
|
|
|
CMD ["npm", "start"]
|