2018-01-29 02:52:20 -05:00
|
|
|
FROM node:8-stretch
|
|
|
|
|
2019-07-08 10:07:58 -04:00
|
|
|
# Allow to pass extra options to the yarn run build
|
2019-04-19 05:58:01 -04:00
|
|
|
# eg: --light --light-fr to not build all client languages
|
|
|
|
# (speed up build time if i18n is not required)
|
|
|
|
ARG NPM_RUN_BUILD_OPTS
|
|
|
|
|
2018-04-15 16:28:05 -04:00
|
|
|
RUN set -ex; \
|
|
|
|
if ! command -v gpg > /dev/null; then \
|
2019-07-08 10:07:58 -04:00
|
|
|
apt update; \
|
|
|
|
apt install -y --no-install-recommends \
|
2018-04-15 16:28:05 -04:00
|
|
|
gnupg \
|
|
|
|
dirmngr \
|
|
|
|
; \
|
|
|
|
rm -rf /var/lib/apt/lists/*; \
|
|
|
|
fi
|
|
|
|
|
2018-01-29 02:52:20 -05:00
|
|
|
# Install dependencies
|
2019-07-08 10:07:58 -04:00
|
|
|
RUN apt update \
|
|
|
|
&& apt -y install ffmpeg \
|
2018-03-23 09:33:51 -04:00
|
|
|
&& rm /var/lib/apt/lists/* -fR
|
2018-01-29 02:52:20 -05:00
|
|
|
|
2018-03-23 09:33:51 -04:00
|
|
|
# Add peertube user
|
2018-04-15 16:28:05 -04:00
|
|
|
RUN groupadd -r peertube \
|
|
|
|
&& useradd -r -g peertube -m peertube
|
|
|
|
|
|
|
|
# grab gosu for easy step-down from root
|
2018-12-06 07:48:33 -05:00
|
|
|
RUN set -eux; \
|
2019-07-08 10:07:58 -04:00
|
|
|
apt update; \
|
|
|
|
apt install -y gosu; \
|
2018-12-06 07:48:33 -05:00
|
|
|
rm -rf /var/lib/apt/lists/*; \
|
|
|
|
gosu nobody true
|
2018-01-29 02:52:20 -05:00
|
|
|
|
2018-03-23 09:33:51 -04:00
|
|
|
# Install PeerTube
|
|
|
|
WORKDIR /app
|
2018-04-16 14:22:42 -04:00
|
|
|
COPY . ./
|
|
|
|
RUN chown -R peertube:peertube /app
|
2018-04-16 12:44:57 -04:00
|
|
|
|
|
|
|
USER peertube
|
2018-03-23 09:33:51 -04:00
|
|
|
|
|
|
|
RUN yarn install --pure-lockfile \
|
2019-04-19 05:58:01 -04:00
|
|
|
&& npm run build -- $NPM_RUN_BUILD_OPTS \
|
2018-08-08 04:10:11 -04:00
|
|
|
&& rm -r ./node_modules ./client/node_modules \
|
2018-08-10 04:37:16 -04:00
|
|
|
&& yarn install --pure-lockfile --production \
|
2018-08-09 13:34:39 -04:00
|
|
|
&& yarn cache clean
|
2018-01-29 02:52:20 -05:00
|
|
|
|
2018-05-07 12:39:42 -04:00
|
|
|
USER root
|
|
|
|
|
|
|
|
RUN mkdir /data /config
|
|
|
|
RUN chown -R peertube:peertube /data /config
|
|
|
|
|
2018-01-29 02:52:20 -05:00
|
|
|
ENV NODE_ENV production
|
2018-05-07 12:39:42 -04:00
|
|
|
ENV NODE_CONFIG_DIR /config
|
2018-01-29 02:52:20 -05:00
|
|
|
|
2018-04-15 16:28:05 -04:00
|
|
|
VOLUME /data
|
2018-05-07 12:39:42 -04:00
|
|
|
VOLUME /config
|
2018-04-15 16:28:05 -04:00
|
|
|
|
2018-04-16 12:44:57 -04:00
|
|
|
COPY ./support/docker/production/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
|
|
|
|
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
|
2018-04-15 16:28:05 -04:00
|
|
|
|
2018-01-29 02:52:20 -05:00
|
|
|
# Run the application
|
2019-07-08 10:07:58 -04:00
|
|
|
CMD ["yarn", "start"]
|
2018-01-29 02:52:20 -05:00
|
|
|
EXPOSE 9000
|