Compare commits

...

1 Commits

Author SHA1 Message Date
f04586419f updating to trixie
All checks were successful
/ Plan (push) Successful in 2m13s
2025-08-18 15:05:29 -05:00

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"]