1
0
mirror of synced 2026-01-19 00:05:14 -05:00
Files
airbyte/airbyte-integrations/bases/base-python/Dockerfile
2021-04-29 07:27:28 -07: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.7
LABEL io.airbyte.name=airbyte/integration-base-python