mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-24 22:59:59 +00:00
Similar to how we pin base `debian` images, also pin `python` base images, so we better cache them and have reproducible builds.
14 lines
460 B
Docker
14 lines
460 B
Docker
# use base image swift:5.10
|
|
FROM swift:5.10@sha256:69828d795abc6aa3f7b7f7a02054ab308420f54dcc806fcbd89c54944e61a089 AS build
|
|
RUN apt-get -q update && apt-get -q install -y libssl-dev
|
|
WORKDIR /source
|
|
|
|
COPY . .
|
|
RUN swift build --configuration release
|
|
|
|
# use base image swift:5.10
|
|
FROM swift:5.10@sha256:69828d795abc6aa3f7b7f7a02054ab308420f54dcc806fcbd89c54944e61a089
|
|
WORKDIR /app
|
|
COPY --from=build /source/.build/release .
|
|
CMD ["/app/PostgresClientKitExample"]
|