1
0
mirror of synced 2026-01-25 01:01:56 -05:00
Files
airbyte/airbyte-integrations/connector-templates/source-python/Dockerfile
2020-11-04 16:38:54 -08:00

17 lines
509 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_{{snakeCase name}}"
ENV AIRBYTE_IMPL_MODULE="source_{{snakeCase name}}"
ENV AIRBYTE_IMPL_PATH="Source{{properCase name}}"
WORKDIR /airbyte/integration_code
COPY $CODE_PATH ./$CODE_PATH
COPY setup.py ./
RUN pip install ".[main]"
LABEL io.airbyte.version=0.1.0
LABEL io.airbyte.name=airbyte/source-{{dashCase name}}