1
0
mirror of synced 2026-01-09 15:05:02 -05:00
Files
airbyte/airbyte-integrations/connectors/source-google-search-console/Dockerfile
Daryna Ishchenko 8970634947 Source Google Search Console: added discover and googleNews to searchType (#27952)
* added discover and googleNews to searchType

* updated changelog

* fixed types for streams
2023-07-05 16:55:19 +03:00

17 lines
518 B
Docker
Executable File

FROM python:3.9-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_google_search_console ./source_google_search_console
COPY main.py ./
COPY setup.py ./
RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
LABEL io.airbyte.version=1.2.1
LABEL io.airbyte.name=airbyte/source-google-search-console