mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-10 23:12:54 +00:00
* Add tests for different postgres clients * test/fixtures: sanitize test name for test_output_dir * test/fixtures: do not look for etcd before runtime * Add workflow for testing Postgres client libraries
12 lines
266 B
Docker
12 lines
266 B
Docker
FROM swift:5.6 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.6
|
|
WORKDIR /app
|
|
COPY --from=build /source/.build/release/release .
|
|
CMD ["/app/PostgresClientKitExample"]
|