1
0
mirror of synced 2026-01-28 10:01:55 -05:00
Files
airbyte/airbyte-integrations/connectors/source-bigquery/Dockerfile
2022-06-20 12:42:56 +01:00

22 lines
570 B
Docker

FROM airbyte/integration-base-java:dev AS build
WORKDIR /airbyte
ENV APPLICATION source-bigquery
COPY build/distributions/${APPLICATION}*.tar ${APPLICATION}.tar
RUN tar xf ${APPLICATION}.tar --strip-components=1 && rm -rf ${APPLICATION}.tar
FROM airbyte/integration-base-java:dev
WORKDIR /airbyte
ENV APPLICATION source-bigquery
COPY --from=build /airbyte /airbyte
# 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.8
LABEL io.airbyte.name=airbyte/source-bigquery