mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-13 00:12:54 +00:00
It supports SNI. See discussion at https://community.neon.tech/t/postgresnio-swift-sni-support/419/4
11 lines
194 B
Docker
11 lines
194 B
Docker
FROM swift:5.7 AS build
|
|
WORKDIR /source
|
|
|
|
COPY . .
|
|
RUN swift build --configuration release
|
|
|
|
FROM swift:5.7
|
|
WORKDIR /app
|
|
COPY --from=build /source/.build/release .
|
|
CMD ["/app/PostgresNIOExample"]
|