Files
core/Dockerfile.bundle
Jan Stabenow 9746248c10 Add v16.8.0
2022-06-03 17:21:52 +02:00

20 lines
397 B
Docker

ARG CORE_IMAGE=datarhei/base:alpine-core-latest
ARG FFMPEG_IMAGE=datarhei/base:alpine-ffmpeg-latest
FROM $CORE_IMAGE as core
FROM $FFMPEG_IMAGE
COPY --from=core /core /core
RUN ffmpeg -buildconf
ENV CORE_CONFIGFILE=/core/config/config.json
ENV CORE_STORAGE_DISK_DIR=/core/data
ENV CORE_DB_DIR=/core/config
VOLUME ["/core/data", "/core/config"]
ENTRYPOINT ["/core/bin/run.sh"]
WORKDIR /core