There is something fucked in the heads of pip devs

This commit is contained in:
hgw 2023-10-02 13:53:19 +00:00
parent d35e29559d
commit 1bc19fc8e9
Signed by: hgw
SSH Key Fingerprint: SHA256:diG7RVYHjd3aDYkZWHYcBJbImu+6zfptuUP+3k/wol4
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ RUN mkdir -p /home/node/app/node_modules && chown -R node:node /home/node/app
WORKDIR /home/node/app
USER node
COPY --chown=node:node lib/banter/requirements.txt .
RUN pip3 install -r requirements.txt
RUN pip3 install -r requirements.txt --break-system-packages
COPY --chown=node:node package*.json ./
RUN npm i
COPY --chown=node:node . .