pict-rs/docker/forgejo/Dockerfile
asonix 94c307c869
Some checks failed
/ check (aarch64-unknown-linux-musl) (push) Has been cancelled
/ check (armv7-unknown-linux-musleabihf) (push) Has been cancelled
/ check (x86_64-unknown-linux-musl) (push) Has been cancelled
/ tests (push) Successful in 2m21s
/ clippy (push) Successful in 2m28s
/ publish-docker (push) Has been skipped
/ publish-forgejo (push) Has been skipped
/ publish-crate (push) Has been skipped
/ build (push) Failing after 49s
Downgrade artifact actions, add dockerfile
2024-02-07 20:57:34 -06:00

25 lines
422 B
Docker

FROM alpine:3.19
ARG UID=991
ARG GID=991
ENV \
UID=${UID} \
GID=${GID}
USER root
RUN \
addgroup -g "${GID}" app && \
adduser -D -G app -u "${UID}" -g "" -h /opt/app app && \
apk add exiftool ffmpeg imagemagick imagemagick-heic tini && \
chown -R app:app
COPY pict-rs /usr/local/bin/pict-rs
USER app
EXPOSE 6669
EXPOSE 8080
VOLUME /mnt
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["/usr/local/bin/pict-rs", "run"]