소스 검색

fix(Dockerfile): add extra-index-url to pip install command

master
lanvent 1 년 전
부모
커밋
8205d2552c
4개의 변경된 파일6개의 추가작업 그리고 5개의 파일을 삭제
  1. +1
    -1
      channel/chat_channel.py
  2. +2
    -2
      docker/Dockerfile.alpine
  3. +2
    -2
      docker/Dockerfile.latest
  4. +1
    -0
      requirements.txt

+ 1
- 1
channel/chat_channel.py 파일 보기

@@ -119,7 +119,7 @@ class ChatChannel(Channel):
pass
else:
return None
content = content.strip()
img_match_prefix = check_prefix(content, conf().get("image_create_prefix"))
if img_match_prefix:
content = content.replace(img_match_prefix, "", 1)


+ 2
- 2
docker/Dockerfile.alpine 파일 보기

@@ -22,8 +22,8 @@ RUN apk add --no-cache \
&& cd ${BUILD_PREFIX} \
&& cp config-template.json ${BUILD_PREFIX}/config.json \
&& /usr/local/bin/python -m pip install --no-cache --upgrade pip \
&& pip install --no-cache -r requirements.txt \
&& pip install --no-cache -r requirements-optional.txt \
&& pip install --no-cache -r requirements.txt --extra-index-url https://alpine-wheels.github.io/index\
&& pip install --no-cache -r requirements-optional.txt --extra-index-url https://alpine-wheels.github.io/index\
&& apk del curl wget

WORKDIR ${BUILD_PREFIX}


+ 2
- 2
docker/Dockerfile.latest 파일 보기

@@ -13,8 +13,8 @@ RUN apk add --no-cache bash ffmpeg espeak \
&& cd ${BUILD_PREFIX} \
&& cp config-template.json config.json \
&& /usr/local/bin/python -m pip install --no-cache --upgrade pip \
&& pip install --no-cache -r requirements.txt \
&& pip install --no-cache -r requirements-optional.txt
&& pip install --no-cache -r requirements.txt --extra-index-url https://alpine-wheels.github.io/index\
&& pip install --no-cache -r requirements-optional.txt --extra-index-url https://alpine-wheels.github.io/index

WORKDIR ${BUILD_PREFIX}



+ 1
- 0
requirements.txt 파일 보기

@@ -4,4 +4,5 @@ PyQRCode>=1.2.1
qrcode>=7.4.2
requests>=2.28.2
chardet>=5.1.0
Pillow
pre-commit

Loading…
취소
저장