PeerTube/support/docker/production/Dockerfile.buster

49 lines
1.1 KiB
Docker
Raw Normal View History

FROM node:12-buster-slim
2019-07-08 16:09:13 +02:00
# Allow to pass extra options to the npm run build
# eg: --light --light-fr to not build all client languages
# (speed up build time if i18n is not required)
ARG NPM_RUN_BUILD_OPTS
# 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
2018-04-16 18:44:57 +02:00
USER peertube
RUN yarn install --pure-lockfile \
&& 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 \
&& 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
2018-05-07 18:39:42 +02:00
ENV NODE_CONFIG_DIR /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
2019-07-08 16:09:13 +02:00
CMD ["npm", "start"]