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 48a3085 commit bdebcddCopy full SHA for bdebcdd
airbyte-integrations/connector-templates/generator/Dockerfile
@@ -8,6 +8,8 @@ ENV ENV_GID $GID
8
RUN mkdir -p /airbyte
9
WORKDIR /airbyte/airbyte-integrations/connector-templates/generator
10
11
-CMD npm install --silent --no-update-notifier && \
+CMD npm install --silent --no-update-notifier && echo "INSTALL DONE" && \
12
npm run generate "$package_desc" "$package_name" && \
13
- chown -R $ENV_UID:$ENV_GID /airbyte/*
+ LAST_CREATED_CONNECTOR=$(ls -td /airbyte/airbyte-integrations/connectors/* | head -n 1) && \
14
+ echo "chowning generated directory: $LAST_CREATED_CONNECTOR" && \
15
+ chown -R $ENV_UID:$ENV_GID $LAST_CREATED_CONNECTOR/*
0 commit comments