* Disable CDC checkpointing until finished the investigation with reading Offset file during syncs * Bump connector versions * auto-bump connector version * Publish postgres manually * Definitions manually for mysql * Generated definitions manually mssql --------- Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
21 lines
451 B
Docker
21 lines
451 B
Docker
FROM airbyte/integration-base-java:dev AS build
|
|
|
|
WORKDIR /airbyte
|
|
|
|
ENV APPLICATION source-postgres
|
|
|
|
COPY build/distributions/${APPLICATION}*.tar ${APPLICATION}.tar
|
|
|
|
RUN tar xf ${APPLICATION}.tar --strip-components=1 && rm -rf ${APPLICATION}.tar
|
|
|
|
FROM airbyte/integration-base-java:dev
|
|
|
|
WORKDIR /airbyte
|
|
|
|
ENV APPLICATION source-postgres
|
|
|
|
COPY --from=build /airbyte /airbyte
|
|
|
|
LABEL io.airbyte.version=2.0.4
|
|
LABEL io.airbyte.name=airbyte/source-postgres
|