pict-rs/docker/object-storage/Dockerfile
asonix 9960c16488
All checks were successful
continuous-integration/drone/push Build is passing
Start testing garage again
2023-01-02 10:48:36 -06:00

16 lines
242 B
Docker

FROM alpine:edge
ARG UID=1000
ARG GID=1000
RUN \
apk add exiftool imagemagick ffmpeg && \
addgroup -g $GID app && \
adduser -h /opt/app -g "" -G app -u $UID -D app && \
chown -R app:app /mnt
COPY root/ /
WORKDIR /opt/app
USER app