aboutsummaryrefslogblamecommitdiffhomepage
path: root/support/docker/production/Dockerfile.bullseye
blob: ac97ddce345d2e47a6b6e15fe118f3d2a25e72ae (plain) (tree)
1
2
3
4
5
6
7
8
9
                          

                      
                
                                                                                                                  

                               
 
                   


                                         
                  
                                     
            

             
 
                                                                                     
                      
                                                                     
                                                                                                     
                       
 




                                            
                       

                                                                             
 
            
              
 

                                                                           
 


                     
                     
                    
FROM node:14-bullseye-slim

# Install dependencies
RUN apt update \
 && apt install -y --no-install-recommends openssl ffmpeg python ca-certificates gnupg gosu build-essential curl \
 && 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

USER peertube

RUN yarn install --pure-lockfile --network-timeout 1200000 --network-concurrency 20 \
    && npm run build \
    && rm -r ./node_modules ./client/node_modules ./client/.angular \
    && yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \
    && yarn cache clean

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
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 ["npm", "start"]