1
0
mirror of synced 2026-01-31 01:02:01 -05:00
Files
airbyte/airbyte-integrations/connectors/source-scaffold-java-jdbc/Dockerfile
etsybaev eec3e03ddb 🎉 Added JDBC source connector bootstrap template (#3819)
* [3560] Added JDBC source connector bootstrap template
2021-06-08 21:04:10 +03:00

13 lines
423 B
Docker

FROM airbyte/integration-base-java:dev
WORKDIR /airbyte
ENV APPLICATION source-scaffold-java-jdbc
COPY build/distributions/${APPLICATION}*.tar ${APPLICATION}.tar
RUN tar xf ${APPLICATION}.tar --strip-components=1
# Airbyte's build system uses these labels to know what to name and tag the docker images produced by this Dockerfile.
LABEL io.airbyte.version=0.1.0
LABEL io.airbyte.name=airbyte/source-scaffold-java-jdbc