pict-rs/docker/object-storage/Dockerfile

26 lines
383 B
Docker
Raw Normal View History

2021-10-29 01:59:11 +00:00
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/ /
2021-10-29 01:59:11 +00:00
COPY ./pict-rs.toml /etc/pict-rs.toml
ENV PATH=$PATH:/usr/bin/vendor_perl
WORKDIR /opt/app
USER app