亲测教程
文章目录
- 首先
- 构建环境
首先
首先你需要有一个 Dockerfile
比如:这里以一个 python 项目举例
FROM python:3.10-slimWORKDIR /appCOPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txtCOPY . .CMD [ "python", "bin/run.py" ]
构建环境
前置环境设置,创建了一个 mybuilder 环境,
docker buildx create --name mybuilder --bootstrap --use
查看支持的环境
docker buildx ls
上传镜像的你的 repo,这里举例上传到 阿里云的 repo:
编译打包上传
docker buildx build --platform linux/amd64 --tag registry.cn-beijing.aliyuncs.com/xxx/xxx:heloworldjavapub --push .