* Update singer template. * Update source python. * Update http python. * Fix a bug where the template tests were not previously running.
16 lines
455 B
Docker
16 lines
455 B
Docker
FROM python:3.7-slim
|
|
|
|
# Bash is installed for more convenient debugging.
|
|
RUN apt-get update && apt-get install -y bash && rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /airbyte/integration_code
|
|
COPY source_scaffold_source_python ./source_scaffold_source_python
|
|
COPY main.py ./
|
|
COPY setup.py ./
|
|
RUN pip install .
|
|
|
|
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
|
|
|
|
LABEL io.airbyte.version=0.1.0
|
|
LABEL io.airbyte.name=airbyte/source-scaffold-source-python
|