peertube-app/Dockerfile
Girish Ramakrishnan 1c78ad39c2 Initial version
2020-06-24 11:05:29 -07:00

31 lines
1,018 B
Docker

FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
RUN mkdir -p /app/code /app/pkg
WORKDIR /app/code
RUN apt-get -y update && apt -y install ffmpeg && rm -rf /var/cache/apt /var/lib/apt/lists
# install yq
RUN curl -sL https://github.com/mikefarah/yq/releases/download/3.2.1/yq_linux_amd64 -o /usr/bin/yq && \
chmod +x /usr/bin/yq
# ARG VERSION=2.2.0
# install peertube
# RUN curl -sL https://github.com/Chocobozzz/PeerTube/releases/download/v${VERSION}/peertube-v${VERSION}.tar.xz | tar --strip-components 1 -Jxvf -
# dbname branch
ARG VERSION=d6a0360a15163ef6f074cb8f649b47efdaf12299
RUN curl -L https://github.com/cloudron-io/PeerTube/archive/${VERSION}.tar.gz | tar -zxvf - --strip-components=1
RUN yarn install --production --pure-lockfile
RUN ln -sf /app/data/production.yaml /app/code/config/local-production.yaml
COPY production.yaml.example start.sh /app/pkg/
ENV NODE_ENV production
ENV NODE_CONFIG_DIR /app/code/config
CMD [ "/app/pkg/start.sh" ]