Skip to content

Commit

Permalink
chore: Update pip install command (#1407)
Browse files Browse the repository at this point in the history
  • Loading branch information
baumandm authored Feb 5, 2024
1 parent 8531df1 commit 97d3473
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ RUN pip install -r requirements/base.txt \
pip install -r requirements/${PACKAGE}; \
done \
fi \
&& pip install -r requirements/local.txt || true
&& if [ -f requirements/local.txt ]; then \
pip install -r requirements/local.txt; \
fi

COPY package.json yarn.lock ./
RUN yarn install --pure-lockfile
Expand Down

0 comments on commit 97d3473

Please sign in to comment.