* Allow new extra properties in validation * Create migration script to upgrade all connectors versions * Bumpversion of all connectors
13 lines
285 B
Docker
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
|