因客户使用飞腾2000平台需要部署vsftpd,但因系统环境不同存在诸多部署问题,且无适配的armv8版本vsftpd容器,特此专门构建vsftpd镜像并记录构建过程
Dockerfile代码如下
1 | FROM arm64v8/debian |
docker-entrypoint.sh代码如下
1 | !/bin/bash |
vsftpd.conf配置文件如下
1 | Run in the foreground to keep the container running: |
将以上三个文件放到同一目录中,使用docker build -t hackerbs/vsftpd:latest .构建即可。