installing kwaylon package in the Dockerfile

This commit is contained in:
John Lancaster
2023-06-11 10:19:58 -05:00
parent da8b2e83e5
commit bb5a193135

View File

@@ -7,6 +7,8 @@ RUN --mount=type=cache,mode=0755,target=/root/.cache/pip python3 -m pip install
RUN python3 -m nltk.downloader words punkt averaged_perceptron_tagger
RUN mkdir /kwaylon
COPY ./src /kwaylon
RUN mkdir -p /kwaylon/src
COPY ./src /kwaylon/src
COPY pyproject.toml /kwaylon
WORKDIR /kwaylon
RUN python3 -m pip install -e /kwaylon