tinyfilemanager/Dockerfile.user
Joao Alves 5b24f29466 Fixed problems in creating docker containers with new version of php
Added debugging docker images
Added a build script
Fixed problem with large file uploads
Merged updates from tinyfilemanager 2.5.2
2023-12-06 17:15:13 +00:00

11 lines
243 B
Docker

ARG IMG_BASE=jpralvesatdocker/tinyfilemanager:latest
FROM ${IMG_BASE}
ARG RUNUSER=tinyfilemanager
RUN addgroup -S $RUNUSER \
&& adduser -S -G $RUNUSER -H -h /var/www/html $RUNUSER \
&& chown -R $RUNUSER:$RUNUSER /var/www/html
USER $RUNUSER