1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-01 22:41:47 +02:00
Files
dockerfiles/editly/Dockerfile

19 lines
397 B
Docker
Raw Normal View History

2021-07-21 11:59:05 +08:00
#
# Dockerfile for editly
#
FROM node:lts-buster
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apt update \
2021-07-21 13:00:13 +08:00
&& apt install -y dumb-init ffmpeg fonts-noto-cjk xvfb \
2021-07-21 11:59:05 +08:00
&& rm -rf /var/lib/apt/lists/*
RUN npm install --global --unsafe-perm editly
WORKDIR /data
ENTRYPOINT ["/usr/bin/dumb-init", "--", "xvfb-run", "--server-args", "-screen 0 1280x1024x24 -ac", "editly"]
CMD ["--help"]