mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-01 10:09:57 +00:00
25 lines
383 B
Docker
25 lines
383 B
Docker
FROM archlinux:latest
|
|
|
|
ARG UID=1000
|
|
ARG GID=1000
|
|
|
|
RUN \
|
|
pacman -Syu --noconfirm \
|
|
perl-image-exiftool \
|
|
imagemagick \
|
|
ffmpeg && \
|
|
groupadd -g 1000 app && \
|
|
useradd -m \
|
|
-d /opt/app \
|
|
-u $UID \
|
|
-g $GID \
|
|
app
|
|
|
|
COPY root/ /
|
|
|
|
COPY ./pict-rs.toml /etc/pict-rs.toml
|
|
|
|
ENV PATH=$PATH:/usr/bin/vendor_perl
|
|
|
|
WORKDIR /opt/app
|
|
USER app
|