BjornMagnussonXA | a79a043 | 2019-07-17 08:26:50 +0000 | [diff] [blame] | 1 | FROM docker.io/panubo/vsftpd |
| 2 | |
| 3 | |
| 4 | COPY tls/ftp.crt /etc/ssl/private/ftp.crt |
| 5 | RUN chmod 644 /etc/ssl/private/ftp.crt |
| 6 | RUN chown root:root /etc/ssl/private/ftp.crt |
| 7 | |
| 8 | COPY tls/ftp.key /etc/ssl/private/ftp.key |
| 9 | RUN chmod 644 /etc/ssl/private/ftp.key |
| 10 | RUN chown root:root /etc/ssl/private/ftp.key |
| 11 | |
| 12 | COPY tls/dfc.crt /etc/ssl/private/dfc.crt |
| 13 | RUN chmod 644 /etc/ssl/private/dfc.crt |
| 14 | RUN chown root:root /etc/ssl/private/dfc.crt |
| 15 | |
| 16 | COPY configuration/vsftpd_ssl.conf /etc/vsftpd_ssl.conf |
| 17 | RUN chmod 644 /etc/vsftpd_ssl.conf |
| 18 | RUN chown root:root /etc/vsftpd_ssl.conf |