34 lines
708 B
Docker
34 lines
708 B
Docker
FROM thallian/confd-env:latest
|
|
|
|
RUN apk add --no-cache \
|
|
libressl \
|
|
openssh-client \
|
|
openldap \
|
|
zlib
|
|
|
|
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/main \
|
|
libcrypto1.1
|
|
|
|
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing \
|
|
proftpd \
|
|
proftpd-mod_ldap \
|
|
proftpd-mod_sftp \
|
|
proftpd-mod_auth_file \
|
|
proftpd-mod_site_misc \
|
|
proftpd-utils
|
|
|
|
RUN addgroup -g 2222 access
|
|
RUN addgroup proftpd access
|
|
|
|
RUN rm /etc/proftpd/dhparams.pem
|
|
RUN mkdir /etc/proftpd/keys/ && mkdir /run/proftpd
|
|
RUN chown -R proftpd:proftpd /run/proftpd
|
|
|
|
ADD /rootfs /
|
|
|
|
WORKDIR /
|
|
|
|
VOLUME /etc/proftpd/keys /var/lib/ftp/data
|
|
|
|
EXPOSE 22
|