Skip to content

Commit b1250fb

Browse files
committed
🔐 Document chatbot system
1 parent 2615b1a commit b1250fb

File tree

2 files changed

+931
-5
lines changed

2 files changed

+931
-5
lines changed

Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,7 @@ USER ${USERNAME}
3333
RUN /usr/local/bin/python -m pip install --upgrade pip --no-cache-dir \
3434
&& /usr/local/bin/python -m pip install --upgrade setuptools --no-cache-dir \
3535
&& python3 -m venv "${POETRY_HOME}" \
36-
&& "${POETRY_HOME}/bin/pip" install poetry --no-cache-dir \
37-
# https://python-poetry.org/blog/announcing-poetry-1.4.0/#faster-installation-of-packages
38-
# a somewhat breaking change was introduced in 1.4.0 that requires this config or else certain packages fail to install
39-
# in our case it was the openai package
40-
&& "${POETRY_HOME}/bin/poetry" config installer.modern-installation false
36+
&& "${POETRY_HOME}/bin/pip" install poetry --no-cache-dir
4137

4238
# Copy poetry.lock* in case it doesn't exist in the repo
4339
COPY --chown=${USERNAME}:${USER_GID} \

0 commit comments

Comments
 (0)