Skip to content

Commit

Permalink
✨ Destination Google Sheets: include socat binary in docker image (#3…
Browse files Browse the repository at this point in the history
  • Loading branch information
git-phu authored Sep 25, 2023
1 parent 6fb74d0 commit 2cb6372
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
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/*
# Include socat binary in the connector image
RUN apt-get update && apt-get install -y bash && apt-get install -y socat && rm -rf /var/lib/apt/lists/*

ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"

Expand All @@ -13,5 +14,5 @@ COPY main.py ./

ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.2.2
LABEL io.airbyte.version=0.2.3
LABEL io.airbyte.name=airbyte/destination-google-sheets
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ data:
connectorSubtype: api
connectorType: destination
definitionId: a4cbd2d1-8dbe-4818-b8bc-b90ad782d12a
dockerImageTag: 0.2.2
dockerImageTag: 0.2.3
dockerRepository: airbyte/destination-google-sheets
githubIssueLabel: destination-google-sheets
icon: google-sheets.svg
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/destinations/google-sheets.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ You cannot create more than 200 worksheets within single spreadsheet.

| Version | Date | Pull Request | Subject |
|---------|------------|----------------------------------------------------------|------------------------------------------------|
| 0.2.3 | 2023-09-25 | [30748](https://github.com/airbytehq/airbyte/pull/30748) | Performance testing - include socat binary in docker image |
| 0.2.2 | 2023-07-06 | [28035](https://github.com/airbytehq/airbyte/pull/28035) | Migrate from authSpecification to advancedAuth |
| 0.2.1 | 2023-06-26 | [27782](https://github.com/airbytehq/airbyte/pull/27782) | Only allow HTTPS urls |
| 0.2.0 | 2023-06-26 | [27780](https://github.com/airbytehq/airbyte/pull/27780) | License Update: Elv2 |
Expand Down

0 comments on commit 2cb6372

Please sign in to comment.