Skip to content

Commit

Permalink
chore: remove redundant python install
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Aug 26, 2023
1 parent 0fdbe90 commit 9cb65d9
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .devcontainer/destination-duckdb/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers-contrib/features/poetry:2": {},
"ghcr.io/devcontainers/features/python:1": {
"version": "3.9",
"installTools": true
}
"ghcr.io/devcontainers-contrib/features/poetry:2": {}
},

"workspaceFolder": "/workspaces/airbyte/airbyte-integrations/connectors/destination-duckdb",
Expand Down Expand Up @@ -43,7 +39,7 @@
// 2. Map the devcontainer.json file to it.
// 3. Mark the root directory as 'safe' for git.
// 4. Install the Python/Poetry dependencies.
"postCreateCommand": "mkdir -p ./.symlinks && ln -s /workspaces/airbyte/.devcontainer/destination-duckdb/devcontainer.json ./.symlinks/devcontainer.json && git config --add safe.directory /workspaces/airbyte && poetry install"
"postCreateCommand": "mkdir -p ./.symlinks && ln -sf /workspaces/airbyte/.devcontainer/destination-duckdb/devcontainer.json ./.symlinks/devcontainer.json && git config --add safe.directory /workspaces/airbyte && poetry install"

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
Expand Down

0 comments on commit 9cb65d9

Please sign in to comment.