mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-10 23:12:54 +00:00
Also, use Workaround D for `swift/PostgresClientKitExample`, which supports neither SNI nor connections options
11 lines
194 B
Docker
11 lines
194 B
Docker
FROM swift:5.8 AS build
|
|
WORKDIR /source
|
|
|
|
COPY . .
|
|
RUN swift build --configuration release
|
|
|
|
FROM swift:5.8
|
|
WORKDIR /app
|
|
COPY --from=build /source/.build/release .
|
|
CMD ["/app/PostgresNIOExample"]
|