-
Notifications
You must be signed in to change notification settings - Fork 636
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Use busybox for runner base (#1934)"
This reverts commit 8d3db33.
- Loading branch information
1 parent
2e70de4
commit 8eabbce
Showing
1 changed file
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
# syntax=docker/dockerfile:1 | ||
|
||
# Base image and static SDK have to be updated together. | ||
FROM --platform=$BUILDPLATFORM swift:6.0.2 AS builder | ||
FROM --platform=$BUILDPLATFORM swift:6.0.1 AS builder | ||
WORKDIR /workspace | ||
RUN swift sdk install \ | ||
https://download.swift.org/swift-6.0.2-release/static-sdk/swift-6.0.2-RELEASE/swift-6.0.2-RELEASE_static-linux-0.0.1.artifactbundle.tar.gz \ | ||
--checksum aa5515476a403797223fc2aad4ca0c3bf83995d5427fb297cab1d93c68cee075 | ||
https://download.swift.org/swift-6.0.1-release/static-sdk/swift-6.0.1-RELEASE/swift-6.0.1-RELEASE_static-linux-0.0.1.artifactbundle.tar.gz \ | ||
--checksum d4f46ba40e11e697387468e18987ee622908bc350310d8af54eb5e17c2ff5481 | ||
|
||
COPY . /workspace | ||
ARG TARGETPLATFORM | ||
RUN --mount=type=cache,target=/workspace/.build,id=build-$TARGETPLATFORM \ | ||
./Scripts/build-linux-release.sh && \ | ||
cp /workspace/.build/release/swiftformat /workspace | ||
|
||
# https://github.com/nicklockwood/SwiftFormat/issues/1930 | ||
FROM busybox:stable AS runner | ||
FROM scratch AS runner | ||
COPY --from=builder /workspace/swiftformat /usr/bin/swiftformat | ||
ENTRYPOINT [ "/usr/bin/swiftformat" ] | ||
CMD ["."] |