PeerTube/support/docker/production/Dockerfile.bookworm

53 lines
1.5 KiB
Docker
Raw Normal View History

FROM node:18-bookworm-slim
2024-07-01 10:50:29 +02:00
ARG ALREADY_BUILT=0
# Install dependencies
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 \
&& gosu nobody true \
&& rm /var/lib/apt/lists/* -fR
# Add peertube user
RUN groupadd -r peertube \
&& useradd -r -g peertube -m peertube
# Install PeerTube
COPY --chown=peertube:peertube . /app
WORKDIR /app
2018-04-16 18:44:57 +02:00
USER peertube
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 \
2024-07-05 15:19:33 +02:00
&& NOCLIENT=1 yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \
2024-07-01 10:50:29 +02:00
&& yarn cache clean
2018-05-07 18:39:42 +02:00
USER root
RUN mkdir /data /config
RUN chown -R peertube:peertube /data /config
ENV NODE_ENV production
ENV NODE_CONFIG_DIR /app/config:/app/support/docker/production/config:/config
ENV PEERTUBE_LOCAL_CONFIG /config
VOLUME /data
2018-05-07 18:39:42 +02:00
VOLUME /config
COPY ./support/docker/production/entrypoint.sh /usr/local/bin/entrypoint.sh
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
# Expose API and RTMP
EXPOSE 9000 1935
# Run the application
CMD [ "node", "dist/server" ]