* 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
17 lines
512 B
Docker
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
|