Skip to content

Commit e122fc7

Browse files
committed
fix a strange behavior change of Pipfile and Pipfile.lock - where lib 'click' is included in dependencies, but having module 'click' not found when start runtime, fix is hacky: just pip install it before pipenv (Pipfile.lock) install, note this happens on master.
1 parent 80cab65 commit e122fc7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

server/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ RUN if [ "$BUILD_DEVELOPMENT" = "True" ]; then \
2020
fi
2121

2222
RUN pipenv lock
23+
RUN pip install click
2324
RUN pipenv install --system --deploy --ignore-pipfile

0 commit comments

Comments
 (0)