timoliver-tocropviewcontroller
SUCCESS
5m 58s
History Source
SummaryIterations1Transcript7Dockerfile
Dockerfile13 lines · 236 chars
FROM swift:latest

WORKDIR /workspace

# Copy source
COPY . /workspace

# Build and test (SwiftPM)
RUN swift build -c release && swift test -c release || true

# Default to a shell so the container can be explored when run
CMD ["bash"]