Hal De 2 年 前
コミット
70c248a3e6
2 ファイル変更2 行追加2 行削除
  1. 1 2
      Dockerfile
  2. 1 0
      requirements.txt

+ 1 - 2
Dockerfile

@@ -5,11 +5,10 @@ ARG S3QL_VERSION=5.0.0
 COPY requirements.txt /
 RUN apk --no-cache add curl gnupg jq bzip2 g++ make pkgconfig fuse3-dev sqlite-dev libffi-dev openssl-dev cargo git cython sphinx
 RUN pip install --user --ignore-installed -r requirements.txt
-RUN gpg2 --batch --keyserver keyserver.ubuntu.com --recv-key 0xD113FCAC3C4E599F
 ARG FILE="s3ql-$S3QL_VERSION"
 RUN git clone https://github.com/s3ql/s3ql.git $FILE
 WORKDIR $FILE
-RUN python3 setup.py build_cython build_ext --inplace \
+RUN CI=true python3 setup.py build_cython build_ext --inplace \
  && python3 setup.py install --user
 
 FROM python:3.11-alpine

+ 1 - 0
requirements.txt

@@ -8,3 +8,4 @@ google-auth
 google-auth-oauthlib
 trio >= 0.15
 pyfuse3 >= 3.2.0, < 4.0
+cython