1
0
mirror of synced 2026-01-11 03:04:14 -05:00
Files
airbyte/airbyte-integrations/connectors/source-postgres/Dockerfile
2022-06-20 12:42:56 +01:00

21 lines
452 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=0.4.26
LABEL io.airbyte.name=airbyte/source-postgres