* Fix postgres money type > 1000 * Convert money to double * Bump source postgres version * Do not bump version in seed yet * Check type ignoring case * Test insertion with currency symbol * Test parsing money string method * Add test case with currency symbol and negative values * Update version date * Bump seed version
13 lines
286 B
Docker
13 lines
286 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.3.16
|
|
LABEL io.airbyte.name=airbyte/source-postgres
|