* add AIRBYTE_ENTRYPOINT for kubernetes support * bump versions * bump version in seed * Update generic template * keep scaffold sources at 0.1.0 * add missing newline * handle python base versions correctly * re-bump mysql and postgres sources * re-bump snowflake destination * add skip tests option * switch to running tests * reverse conditional to make it safer * fix publish to include the test running * fix iterable version * fix file generation Co-authored-by: Sherif A. Nada <snadalive@gmail.com>
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.3.4
|
|
LABEL io.airbyte.name=airbyte/source-postgres
|