1
0
mirror of synced 2026-02-01 04:01:50 -05:00
Files
airbyte/airbyte-integrations/bases/base-python/Dockerfile
Sherif A. Nada 3827235af0 Santa: Implement OAuth (#3000)
Basic OAuthAuthenticator interface.

Co-authored-by: Davin Chia <davinchia@gmail.com>
2021-04-23 10:12:13 +08:00

19 lines
524 B
Docker

FROM airbyte/base-airbyte-protocol-python:0.1.1
COPY --from=airbyte/integration-base:dev /airbyte /airbyte
WORKDIR /airbyte/base_python_code
COPY base_python ./base_python
COPY setup.py ./
RUN pip install pip==20.2
RUN pip install .
ENV AIRBYTE_SPEC_CMD "base-python spec"
ENV AIRBYTE_CHECK_CMD "base-python check"
ENV AIRBYTE_DISCOVER_CMD "base-python discover"
ENV AIRBYTE_READ_CMD "base-python read"
ENTRYPOINT ["/airbyte/base.sh"]
LABEL io.airbyte.version=0.1.5
LABEL io.airbyte.name=airbyte/integration-base-python