We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10ce110 commit 1442b1aCopy full SHA for 1442b1a
Dockerfile
@@ -20,9 +20,14 @@ RUN mkdir -p source_declarative_manifest \
20
&& cp /usr/local/lib/python3.10/site-packages/airbyte_cdk/cli/source_declarative_manifest/_run.py source_declarative_manifest/run.py \
21
&& cp /usr/local/lib/python3.10/site-packages/airbyte_cdk/cli/source_declarative_manifest/spec.json source_declarative_manifest/
22
23
+
24
25
# Remove unnecessary build files
26
RUN rm -rf dist/ pyproject.toml poetry.lock README.md
27
28
+# Set ownership of /airbyte to the airbyte user
29
+RUN chown -R airbyte /airbyte
30
31
# Set the entrypoint
32
ENV AIRBYTE_ENTRYPOINT="python /airbyte/integration_code/main.py"
33
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
0 commit comments