updating to trixie
All checks were successful
/ Plan (push) Successful in 2m13s

This commit is contained in:
2025-08-18 15:05:29 -05:00
parent 6a7160be41
commit f04586419f

View File

@@ -1,6 +1,5 @@
FROM debian:bullseye-slim
RUN apt update && apt install -y proftpd && apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN sed -i "s/# DefaultRoot/DefaultRoot /" /etc/proftpd/proftpd.conf
FROM debian:trixie-slim
RUN apt update && apt install -y proftpd && apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && sed -i "s/# DefaultRoot/DefaultRoot /" /etc/proftpd/proftpd.conf
EXPOSE 20 21
ADD docker-entrypoint.sh /usr/local/sbin/docker-entrypoint.sh
ENTRYPOINT ["/usr/local/sbin/docker-entrypoint.sh"]