armcha-space-navigation-view
SUCCESS
12m 19s
History Source
SummaryIterations1Transcript14Dockerfile
Dockerfile15 lines · 317 chars
FROM circleci/android:api-25

# Set working directory and copy project
WORKDIR /workspace
COPY . /workspace

# Ensure wrapper is executable
RUN chmod +x gradlew

# Build the project (multi-module) - skip tests for speed in image build
RUN ./gradlew clean build -x test

# Default to an interactive shell
CMD ["bash"]