1
0
mirror of synced 2025-12-23 03:47:05 -05:00
Files
airbyte/airbyte-integrations/connectors/source-python-http-tutorial/Dockerfile
2021-04-27 00:28:10 -07:00

17 lines
509 B
Docker

FROM airbyte/integration-base-python:0.1.5
# 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_python_http_tutorial"
ENV AIRBYTE_IMPL_MODULE="source_python_http_tutorial"
ENV AIRBYTE_IMPL_PATH="SourcePythonHttpTutorial"
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-python-http-tutorial