# docker **Repository Path**: mirrors_fastlane/docker ## Basic Information - **Project Name**: docker - **Description**: Docker image used by https://github.com/fastlane/fastlane and https://github.com/fastlane/docs - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-02-27 - **Last Updated**: 2026-02-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # fastlane-docker A `Dockerfile` that is used on _fastlane_'s CIs which is configured for Ruby 2.7, Python 3.6.8, and Java 8. This is built to be used on a CI (primarly CircleCI) when needing to either test _fastlane_ on a Linux CI or test and deploy _fastlane_ docs using Linux. Using this `Dockerfile` is the most effecient way of using the required Ruby, Python, and Java versions for each build and keeping it consistent. ## Places being used - [fastlane/docs](https://github.com/fastlane/docs/blob/master/.circleci/config.yml) - [fastlane/fastlane](https://github.com/fastlane/fastlane/blob/master/.circleci/config.yml) ## Publishing a new version ``` docker build -t fastlanetools/ci:x.y.z ./ docker push fastlanetools/ci:x.y.z ```