docker/vsftpd/Dockerfile
2024-02-27 21:27:23 +01:00

11 lines
338 B
Docker

FROM docker.io/debian:12-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
vsftpd \
&& rm -rf /var/lib/apt/lists/*
COPY entrypoint.sh /usr/local/bin/
COPY vsftpd.conf /etc/
VOLUME /files/
ENTRYPOINT ["entrypoint.sh"]
CMD ["vsftpd"]