Update client libs for test_runner/pg_clients to their latest versions (#4092)

Also, use Workaround D for `swift/PostgresClientKitExample`, 
which supports neither SNI nor connections options
This commit is contained in:
Alexander Bayandin
2023-05-04 18:22:04 +01:00
committed by GitHub
parent 88f39c11d4
commit 291b4f0d41
21 changed files with 375 additions and 211 deletions

View File

@@ -1,11 +1,11 @@
FROM swift:5.7 AS build
FROM swift:5.8 AS build
RUN apt-get -q update && apt-get -q install -y libssl-dev
WORKDIR /source
COPY . .
RUN swift build --configuration release
FROM swift:5.7
FROM swift:5.8
WORKDIR /app
COPY --from=build /source/.build/release .
CMD ["/app/PostgresClientKitExample"]