16 lines
387 B
Docker
16 lines
387 B
Docker
FROM alpine:3.21.2
|
|
|
|
LABEL org.opencontainers.image.authors="alier@student.42mulhouse.fr"
|
|
|
|
RUN apk add vsftpd
|
|
|
|
RUN printf 'Born2beroot\nBorn2beroot' | adduser arnaud -h /var/www/wordpress
|
|
|
|
#HEALTHCHECK --start-period=5s \
|
|
# CMD cgi-fcgi -bind -connect 127.0.0.1:9001 || exit 1
|
|
|
|
COPY conf/vsftpd.conf /etc/vsftpd/vsftpd.conf
|
|
|
|
EXPOSE 21
|
|
|
|
ENTRYPOINT ["vsftpd", "/etc/vsftpd/vsftpd.conf"]
|