1
0
mirror of synced 2026-01-05 12:05:28 -05:00
Files
airbyte/airbyte-integrations/connectors/source-google-analytics-v4/Dockerfile
Arsen Losenko 88ce714116 Source Google Analytics (UA): specify date format in spec (#28149)
* Source Google Analytics (Universal Analytics): specify date format in spec

* Update changelog

* Specify pattern in spec to pass CAT

* Update spec to support previous date format

* Leave validation only for YYYY-MM-DD dates, as the only valid option
2023-07-19 21:59:31 +03:00

17 lines
512 B
Docker

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 setup.py ./
COPY source_google_analytics_v4 ./source_google_analytics_v4
COPY main.py ./
RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
LABEL io.airbyte.version=0.2.1
LABEL io.airbyte.name=airbyte/source-google-analytics-v4