2023-10-11 06:59:24 -05:00
|
|
|
FROM node:18-bookworm-slim
|
2018-01-29 01:52:20 -06:00
|
|
|
|
|
|
|
# Install dependencies
|
2019-07-08 09:07:58 -05:00
|
|
|
RUN apt update \
|
2022-03-07 06:39:50 -06:00
|
|
|
&& apt install -y --no-install-recommends openssl ffmpeg python3 ca-certificates gnupg gosu build-essential curl git \
|
2019-12-03 17:51:55 -06:00
|
|
|
&& gosu nobody true \
|
|
|
|
&& rm /var/lib/apt/lists/* -fR
|
2018-01-29 01:52:20 -06:00
|
|
|
|
2018-03-23 08:33:51 -05:00
|
|
|
# Add peertube user
|
2018-04-15 15:28:05 -05:00
|
|
|
RUN groupadd -r peertube \
|
|
|
|
&& useradd -r -g peertube -m peertube
|
|
|
|
|
2018-03-23 08:33:51 -05:00
|
|
|
# Install PeerTube
|
2019-12-12 02:41:52 -06:00
|
|
|
COPY --chown=peertube:peertube . /app
|
2018-03-23 08:33:51 -05:00
|
|
|
WORKDIR /app
|
2018-04-16 11:44:57 -05:00
|
|
|
|
|
|
|
USER peertube
|
2018-03-23 08:33:51 -05:00
|
|
|
|
2022-03-04 09:49:20 -06:00
|
|
|
# Install manually client dependencies to apply our network timeout option
|
|
|
|
RUN cd client && yarn install --pure-lockfile --network-timeout 1200000 && cd ../ \
|
|
|
|
&& yarn install --pure-lockfile --network-timeout 1200000 \
|
2022-01-06 03:37:49 -06:00
|
|
|
&& npm run build \
|
2022-01-03 04:34:05 -06:00
|
|
|
&& rm -r ./node_modules ./client/node_modules ./client/.angular \
|
2022-01-03 04:01:39 -06:00
|
|
|
&& yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \
|
2018-08-09 12:34:39 -05:00
|
|
|
&& yarn cache clean
|
2018-01-29 01:52:20 -06:00
|
|
|
|
2018-05-07 11:39:42 -05:00
|
|
|
USER root
|
|
|
|
|
|
|
|
RUN mkdir /data /config
|
|
|
|
RUN chown -R peertube:peertube /data /config
|
|
|
|
|
2018-01-29 01:52:20 -06:00
|
|
|
ENV NODE_ENV production
|
2021-10-12 06:33:44 -05:00
|
|
|
ENV NODE_CONFIG_DIR /app/config:/app/support/docker/production/config:/config
|
|
|
|
ENV PEERTUBE_LOCAL_CONFIG /config
|
2018-01-29 01:52:20 -06:00
|
|
|
|
2018-04-15 15:28:05 -05:00
|
|
|
VOLUME /data
|
2018-05-07 11:39:42 -05:00
|
|
|
VOLUME /config
|
2018-04-15 15:28:05 -05:00
|
|
|
|
2020-03-02 17:29:52 -06:00
|
|
|
COPY ./support/docker/production/entrypoint.sh /usr/local/bin/entrypoint.sh
|
2022-05-04 02:06:44 -05:00
|
|
|
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
|
2018-04-15 15:28:05 -05:00
|
|
|
|
2020-11-21 10:32:42 -06:00
|
|
|
# Expose API and RTMP
|
|
|
|
EXPOSE 9000 1935
|
|
|
|
|
2018-01-29 01:52:20 -06:00
|
|
|
# Run the application
|
2022-05-04 02:06:44 -05:00
|
|
|
CMD [ "node", "dist/server" ]
|