File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 11# ================================
22# Build image
33# ================================
4- FROM swift:5.10 -noble AS build
4+ FROM swift:6.0 -noble AS build
55
66# Install OS updates
77RUN export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true \
@@ -23,11 +23,12 @@ RUN swift package resolve \
2323# Copy entire repo into container
2424COPY . .
2525
26- # Build everything , with optimizations, with static linking, and using jemalloc
26+ # Build the application , with optimizations, with static linking, and using jemalloc
2727# N.B.: The static version of jemalloc is incompatible with the static Swift runtime.
2828RUN swift build -c release \
29- --static-swift-stdlib \
30- -Xlinker -ljemalloc
29+ --product App \
30+ --static-swift-stdlib \
31+ -Xlinker -ljemalloc
3132
3233# Switch to the staging area
3334WORKDIR /staging
You can’t perform that action at this time.
0 commit comments