1
0
mirror of synced 2026-01-07 00:05:48 -05:00
Files
airbyte/airbyte-integrations/connectors/source-qualaroo/Dockerfile
Denys Davydov 1f1683a160 Source Qualaroo: drop auth spec (#26491)
* Connector health: source hubspot, gitlab, snapchat-marketing: fix builds

* #26244 source Qualaroo: remove authSpec

* #26244 source qualaroo: update stream schema

* source qualaroo: upda changelog
2023-05-26 11:44:42 +03:00

34 lines
871 B
Docker

FROM python:3.9.11-alpine3.15 as base
# build and load all requirements
FROM base as builder
WORKDIR /airbyte/integration_code
# upgrade pip to the latest version
RUN apk --no-cache upgrade \
&& pip install --upgrade pip
COPY setup.py ./
# install necessary packages to a temporary folder
RUN pip install --prefix=/install .
# build a clean environment
FROM base
WORKDIR /airbyte/integration_code
# copy all loaded and built libraries to a pure basic image
COPY --from=builder /install /usr/local
# Bash is installed for more convenient debugging.
RUN apk --no-cache add bash
# copy payload code only
COPY main.py ./
COPY source_qualaroo ./source_qualaroo
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
LABEL io.airbyte.version=0.2.0
LABEL io.airbyte.name=airbyte/source-qualaroo