Files
neon/test_runner/pg_clients/swift/PostgresNIOExample/Dockerfile
2023-02-04 15:56:11 +01:00

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"]