# Dockerfiles **Repository Path**: lomospace/Dockerfiles ## Basic Information - **Project Name**: Dockerfiles - **Description**: Dockerfile 集合 - **Primary Language**: Docker - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-10-26 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### Dockerfile 说明 > 目标: 容器方式运行 Jenkins, 且可以打包 Android APP 包. 本地 `build` 构建镜像。 ```bash # 使用当前目录的 Dockerfile 创建镜像 docker build -t lomo.space/jenkins:v1.0 . # -f 参数指定 dockerfile 文件位置去构建, 自定义 dockerfile 文件名为 Android_Jenkins_Dockfile # docker build -t lomo.space/jenkins:v1.0 -f ./Android_Jenkins_Dockfile . ```