1
0
mirror of synced 2026-01-08 12:03:02 -05:00
Files
airbyte/airbyte-integrations/connectors/source-postgres/Dockerfile
Christophe Duong 070575ffdf Protocol allows future / unknown properties (#2238)
* Allow new extra properties in validation
* Create migration script to upgrade all connectors versions
* Bumpversion of all connectors
2021-03-09 13:36:36 +01:00

13 lines
285 B
Docker

FROM airbyte/integration-base-java:dev
WORKDIR /airbyte
ENV APPLICATION source-postgres
COPY build/distributions/${APPLICATION}*.tar ${APPLICATION}.tar
RUN tar xf ${APPLICATION}.tar --strip-components=1
LABEL io.airbyte.version=0.2.0
LABEL io.airbyte.name=airbyte/source-postgres