2023-10-11 13:59:24 +02:00
|
|
|
FROM node:18-bookworm-slim
|
2018-01-29 08:52:20 +01:00
|
|
|
|
2024-07-01 10:50:29 +02:00
|
|
|
ARG ALREADY_BUILT=0
|
|
|
|
|
2018-01-29 08:52:20 +01:00
|
|
|
# Install dependencies
|
2019-07-08 16:07:58 +02:00
|
|
|
RUN apt update \
|
2024-07-01 10:50:29 +02:00
|
|
|
&& apt install -y --no-install-recommends openssl ffmpeg python3 python3-pip ca-certificates gnupg gosu build-essential curl git \
|
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
|
|
|
|
2022-03-04 16:49:20 +01:00
|
|
|
# Install manually client dependencies to apply our network timeout option
|
2024-07-01 10:50:29 +02:00
|
|
|
RUN if [ "${ALREADY_BUILT}" = 0 ]; then \
|
|
|
|
cd client && yarn install --pure-lockfile --network-timeout 1200000 && cd ../ \
|
2022-03-04 16:49:20 +01:00
|
|
|
&& yarn install --pure-lockfile --network-timeout 1200000 \
|
2024-07-01 10:50:29 +02:00
|
|
|
&& npm run build; \
|
|
|
|
else \
|
|
|
|
echo "Do not build application inside Docker because of ALREADY_BUILT build argument"; \
|
|
|
|
fi; \
|
|
|
|
rm -rf ./node_modules ./client/node_modules ./client/.angular \
|
|
|
|
&& yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \
|
|
|
|
&& 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
|
2021-10-12 13:33:44 +02:00
|
|
|
ENV NODE_CONFIG_DIR /app/config:/app/support/docker/production/config:/config
|
|
|
|
ENV PEERTUBE_LOCAL_CONFIG /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
|
2022-05-04 09:06:44 +02:00
|
|
|
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
|
2022-05-04 09:06:44 +02:00
|
|
|
CMD [ "node", "dist/server" ]
|