all-in-one backend using docker

This commit is contained in:
2025-08-15 18:13:40 +02:00
parent fdfa6e9b80
commit 0d101dec1d
6 changed files with 146 additions and 123 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM bfren/ftps:latest
# Install required tools for Alpine
RUN apk add --no-cache \
bash \
inotify-tools \
libavif-apps \
findutils
# Copy post-upload script
COPY post_upload.sh /usr/local/bin/post_upload.sh
RUN chmod +x /usr/local/bin/post_upload.sh
# Launch script via bash
CMD ["bash", "/usr/local/bin/post_upload.sh"]