pict-rs/docker/drone/Dockerfile
Aode (lion) 2de4f30466
All checks were successful
continuous-integration/drone/push Build is passing
Test drone docker push
2021-12-03 19:20:02 -06:00

20 lines
357 B
Docker

ARG REPO_ARCH
FROM asonix/rust-runner:$REPO_ARCH-latest
USER root
RUN \
apk add exiftool imagemagick ffmpeg && \
chown -R app:app /mnt
ARG TARGET_ARCH
COPY target/$TARGET_ARCH/release/pict-rs /usr/local/bin/pict-rs
COPY docker/prod/root/ /
USER app
EXPOSE 8080
VOLUME /mnt
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["/usr/local/bin/pict-rs", "-p", "/mnt"]