1
0
mirror of synced 2026-02-02 16:02:07 -05:00
Files
airbyte/airbyte-integrations/bases/base-python/Dockerfile
2020-10-21 11:23:49 -07:00

18 lines
481 B
Docker

FROM python:3.7-slim
COPY --from=airbyte/integration-base:dev /airbyte /airbyte
WORKDIR /airbyte/base_python_code
COPY airbyte_protocol ./airbyte_protocol
COPY setup.py ./
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.0
LABEL io.airbyte.name=airbyte/integration-base-python