Skip to content

Commit

Permalink
Fix issue with node_modules not found (#4018)
Browse files Browse the repository at this point in the history
  • Loading branch information
TymoshokDmytro committed Jun 10, 2021
1 parent efdeb4f commit dca5d64
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -8,5 +8,4 @@ ENV ENV_GID $GID
RUN mkdir -p /airbyte
WORKDIR /airbyte/airbyte-integrations/connector-templates/generator

RUN npm install npm@7 --silent --no-update-notifier
CMD npm run generate && chown -R $ENV_UID:$ENV_GID /airbyte/*
CMD npm install --silent --no-update-notifier && npm run generate && chown -R $ENV_UID:$ENV_GID /airbyte/*

0 comments on commit dca5d64

Please sign in to comment.