feat(docker): alpine 3.15.0, vsftpd 3.0.5r1

This commit is contained in:
Gareth Flowers 2022-01-22 22:49:15 +00:00
parent 27f5b5361d
commit ae94c71a53

View file

@ -1,11 +1,11 @@
FROM alpine:3.14.3 FROM alpine:3.15.0
ENV FTP_USER=foo \ ENV FTP_USER=foo \
FTP_PASS=bar \ FTP_PASS=bar \
GID=1000 \ GID=1000 \
UID=1000 UID=1000
RUN apk add --no-cache --update \ RUN apk add --no-cache --update \
vsftpd==3.0.4-r0 vsftpd==3.0.5-r1
COPY [ "/src/vsftpd.conf", "/etc" ] COPY [ "/src/vsftpd.conf", "/etc" ]
COPY [ "/src/docker-entrypoint.sh", "/" ] COPY [ "/src/docker-entrypoint.sh", "/" ]