1
0
mirror of synced 2026-01-02 21:02:43 -05:00
Files
airbyte/airbyte-integrations/connectors/source-scaffold-source-python/Dockerfile
2021-03-15 01:24:21 -07:00

17 lines
515 B
Docker

FROM airbyte/integration-base-python:dev
# Bash is installed for more convenient debugging.
RUN apt-get update && apt-get install -y bash && rm -rf /var/lib/apt/lists/*
ENV CODE_PATH="source_scaffold_source_python"
ENV AIRBYTE_IMPL_MODULE="source_scaffold_source_python"
ENV AIRBYTE_IMPL_PATH="SourceScaffoldSourcePython"
WORKDIR /airbyte/integration_code
COPY $CODE_PATH ./$CODE_PATH
COPY setup.py ./
RUN pip install .
LABEL io.airbyte.version=0.1.0
LABEL io.airbyte.name=airbyte/source-scaffold-source-python