Skip to content

Commit

Permalink
✨ Source Google Sheets: include socat binary in docker image (#30749)
Browse files Browse the repository at this point in the history
  • Loading branch information
git-phu authored Sep 26, 2023
1 parent 2cb6372 commit 4cc25bc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ FROM base as builder
WORKDIR /airbyte/integration_code

# upgrade pip to the latest version
# Include socat binary in the connector image
RUN apk --no-cache upgrade \
&& pip install --upgrade pip \
&& apk --no-cache add tzdata build-base socat
&& apk --no-cache add tzdata build-base


COPY setup.py ./
Expand All @@ -26,7 +25,8 @@ COPY --from=builder /usr/share/zoneinfo/Etc/UTC /etc/localtime
RUN echo "Etc/UTC" > /etc/timezone

# bash is installed for more convenient debugging.
RUN apk --no-cache add bash && \
# Include socat binary in the connector image
RUN apk --no-cache add bash socat && \
# upgrading openssl due to https://nvd.nist.gov/vuln/detail/CVE-2023-2650
apk upgrade

Expand All @@ -37,5 +37,5 @@ COPY source_google_sheets ./source_google_sheets
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.3.8
LABEL io.airbyte.version=0.3.9
LABEL io.airbyte.name=airbyte/source-google-sheets
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ data:
connectorSubtype: file
connectorType: source
definitionId: 71607ba1-c0ac-4799-8049-7f4b90dd50f7
dockerImageTag: 0.3.8
dockerImageTag: 0.3.9
dockerRepository: airbyte/source-google-sheets
githubIssueLabel: source-google-sheets
icon: google-sheets.svg
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/google-sheets.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ Airbyte batches requests to the API in order to efficiently pull data and respec
| Version | Date | Pull Request | Subject |
|---------|------------|----------------------------------------------------------|-----------------------------------------------------------------------------------|
| 0.3.9 | 2023-09-25 | [30749](https://github.com/airbytehq/airbyte/pull/30749) | Performance testing - include socat binary in docker image |
| 0.3.8 | 2023-09-25 | [30747](https://github.com/airbytehq/airbyte/pull/30747) | Performance testing - include socat binary in docker image |
| 0.3.7 | 2023-08-25 | [29826](https://github.com/airbytehq/airbyte/pull/29826) | Remove row batch size from spec, add auto increase this value when rate limits |
| 0.3.6 | 2023-08-16 | [29491](https://github.com/airbytehq/airbyte/pull/29491) | Update to latest CDK |
Expand Down

0 comments on commit 4cc25bc

Please sign in to comment.